summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorxgizzmo <xgizzmo@ampache>2007-07-19 00:19:43 +0000
committerxgizzmo <xgizzmo@ampache>2007-07-19 00:19:43 +0000
commitb337d84d9af8a7db8e0171c9c0f4bedeae0ef05e (patch)
tree6ffc0ed94bfd121d4d0bf9d0d9f658b95fc9fd84 /modules
parent6276d279e63da27c9021bd5b9aa7f0f6d2ee9580 (diff)
downloadampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.tar.gz
ampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.tar.bz2
ampache-b337d84d9af8a7db8e0171c9c0f4bedeae0ef05e.zip
few fixups to pass W3C Validation Service (wip)
Diffstat (limited to 'modules')
-rw-r--r--modules/localplay/icecast.controller.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/localplay/icecast.controller.php b/modules/localplay/icecast.controller.php
index c95fd96a..9556d173 100644
--- a/modules/localplay/icecast.controller.php
+++ b/modules/localplay/icecast.controller.php
@@ -109,7 +109,7 @@ class AmpacheIcecast {
function add_songs($songs) {
$filename = conf('localplay_icecast_tracklist');
- //echo "$filename " . _("Opened for writing") . "<br>\n";
+ //echo "$filename " . _("Opened for writing") . "<br />\n";
/* Open the file for writing */
if (!$handle = @fopen($filename, "w")) {
@@ -121,7 +121,7 @@ class AmpacheIcecast {
$song = new Song($song_id);
$url = $song->get_url();
- //echo "$song->file<br>\n";
+ //echo "$song->file<br />\n";
$line = "$song->file\n";
if (!fwrite($handle, $line)) {
debug_event('icecast',"Fwrite: Unabled to write $line into $filename",'3');
@@ -131,7 +131,7 @@ class AmpacheIcecast {
} // end foreach
- //echo $filename . " " . _("Closed after write") . "<br>\n";
+ //echo $filename . " " . _("Closed after write") . "<br />\n";
fclose($handle);
return true;