Changeset 1718
- Timestamp:
- 08/30/08 13:58:51 (3 months ago)
- Location:
- branches/3.4
- 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
-
branches/3.4/config/ampache.cfg.php.dist
r1654 r1718 524 524 ; use_rss = false (values true | false) 525 525 ; 526 ;DEFAULT: use_rss = false527 ;use_rss = false526 ;DEFAULT: use_rss = true 527 use_rss = true 528 528 ; 529 529 ; -
branches/3.4/docs/CHANGELOG
r1713 r1718 5 5 -------------------------------------------------------------------------- 6 6 v.3.4.3 7 - Add Links to RSS feeds and change default to use_rss=true 7 8 - Fixed Dynamic Random/Related URLs with players that always send 8 9 a byte offset (MPD) -
branches/3.4/templates/show_index.inc.php
r1504 r1718 42 42 <?php 43 43 $data = Song::get_recently_played(); 44 show_box_top(_('Recently Played')); 44 $link = Config::get('use_rss') ? ' ' . RSS::get_display('recentlyplayed') : ''; 45 show_box_top(_('Recently Played') . $link); 45 46 if (count($data)) { require_once Config::get('prefix') . '/templates/show_recently_played.inc.php'; } 46 47 show_box_bottom(); -
branches/3.4/templates/show_now_playing.inc.php
r1268 r1718 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
