Changeset 1719
- Timestamp:
- 08/30/08 13:59:11 (3 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 modified
-
config/ampache.cfg.php.dist (modified) (1 diff)
-
docs/CHANGELOG (modified) (1 diff)
-
images/icon_feed.png (added)
-
lib/class/rss.class.php (added)
-
templates/show_index.inc.php (modified) (1 diff)
-
templates/show_now_playing.inc.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config/ampache.cfg.php.dist
r1655 r1719 526 526 ; use_rss = false (values true | false) 527 527 ; 528 ;DEFAULT: use_rss = false529 ;use_rss = false528 ;DEFAULT: use_rss = true 529 use_rss = true 530 530 ; 531 531 ; -
trunk/docs/CHANGELOG
r1714 r1719 5 5 -------------------------------------------------------------------------- 6 6 v.3.5-Alpha1 7 - Add links to RSS feeds and set default to TRUE in config.dist 7 8 - Fixed Dynamic Random/Related URLs with players that always send 8 9 a byte offset (MPD) -
trunk/templates/show_index.inc.php
r1640 r1719 43 43 $data = Song::get_recently_played(); 44 44 Song::build_cache(array_keys($data)); 45 show_box_top(_('Recently Played')); 45 $link = Config::get('use_rss') ? ' ' . RSS::get_display('recentlyplayed') : ''; 46 show_box_top(_('Recently Played') . $link); 46 47 require_once Config::get('prefix') . '/templates/show_recently_played.inc.php'; 47 48 show_box_bottom(); -
trunk/templates/show_now_playing.inc.php
r1268 r1719 2 2 /* 3 3 4 Copyright (c) 2001 - 2007Ampache.org4 Copyright (c) Ampache.org 5 5 All rights reserved. 6 6 … … 29 29 30 30 if (count($results)) { 31 $link = Config::get('use_rss') ? ' ' . RSS::get_display('nowplaying') : ''; 31 32 ?> 32 <?php show_box_top(_('Now Playing') ); ?>33 <?php show_box_top(_('Now Playing') . $link); ?> 33 34 <div class="np_row"> 34 35 <?php
