diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.inc | 5 | ||||
-rw-r--r-- | templates/show_mail_users.inc.php | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/templates/header.inc b/templates/header.inc index 2fbf47bc..7dce86b9 100644 --- a/templates/header.inc +++ b/templates/header.inc @@ -31,6 +31,11 @@ $location = get_location(); <?php if (conf('use_rss')) { ?> <link rel="alternate" type="application/rss+xml" title="<?php echo conf('rss_main_title'); ?>" href="<?php echo $web_path; ?>/rss.php" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Latest Artists Additions" href="<?php echo $web_path; ?>/rss.php?type=latestartist" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Latest Albums Additions" href="<?php echo $web_path; ?>/rss.php?type=latestalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Albums" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Artists" href="<?php echo $web_path; ?>/rss.php?type=popularalbum" /> +<link rel="alternate" type="application/rss+xml" title="Ampache Most Popular Songs" href="<?php echo $web_path; ?>/rss.php?type=popularsong" /> <?php } ?> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo conf('site_charset'); ?>" /> <title><?php echo conf('site_title'); ?> - <?php echo $location['title']; ?></title> diff --git a/templates/show_mail_users.inc.php b/templates/show_mail_users.inc.php index b3d34f6e..ff9740c0 100644 --- a/templates/show_mail_users.inc.php +++ b/templates/show_mail_users.inc.php @@ -49,7 +49,7 @@ </tr> <tr> - <td><?php echo _('Newest Artist Additions'); ?>:</td> + <td><?php echo _('Latest Artist Additions'); ?>:</td> <td> <input type="checkbox" name="new_artists" value="yes" /> </td> @@ -60,7 +60,7 @@ </tr> <tr> - <td><?php echo _('Newest Album Additions'); ?>:</td> + <td><?php echo _('Latest Album Additions'); ?>:</td> <td> <input type="checkbox" name="new_albums" value="yes" /> </td> |