diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/show_now_playing.inc.php | 2 | ||||
-rw-r--r-- | templates/show_recently_played.inc.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/show_now_playing.inc.php b/templates/show_now_playing.inc.php index dfa55f8d..6b3c985b 100644 --- a/templates/show_now_playing.inc.php +++ b/templates/show_now_playing.inc.php @@ -28,7 +28,7 @@ */ if (count($results)) { -$link = Config::get('use_rss') ? ' ' . AmpacheRSS::get_display('nowplaying') : ''; +$link = Config::get('use_rss') ? ' ' . Ampache_RSS::get_display('nowplaying') : ''; ?> <?php show_box_top(T_('Now Playing') . $link); ?> <?php diff --git a/templates/show_recently_played.inc.php b/templates/show_recently_played.inc.php index 6011d1f8..01a3754e 100644 --- a/templates/show_recently_played.inc.php +++ b/templates/show_recently_played.inc.php @@ -20,7 +20,7 @@ * */ -$link = Config::get('use_rss') ? ' ' . AmpacheRSS::get_display('recently_played') : ''; +$link = Config::get('use_rss') ? ' ' . Ampache_RSS::get_display('recently_played') : ''; show_box_top(T_('Recently Played') . $link, 'box box_recently_played'); ?> <table class="tabledata" cellpadding="0" cellspacing="0"> |