summaryrefslogtreecommitdiffstats
path: root/download
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-25 17:28:50 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2005-06-25 17:28:50 +0000
commit2398133cc42045805e6045935efeefee18ab1ad8 (patch)
tree88e81a14e612cf23fe210fe1750634fbc48ae29e /download
parent793d3d0bf19a8007e54f8440a5412e2b6709f5b3 (diff)
downloadampache-2398133cc42045805e6045935efeefee18ab1ad8.tar.gz
ampache-2398133cc42045805e6045935efeefee18ab1ad8.tar.bz2
ampache-2398133cc42045805e6045935efeefee18ab1ad8.zip
more html cleanup
Diffstat (limited to 'download')
-rw-r--r--download/index.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/download/index.php b/download/index.php
index 25972606..c04f1563 100644
--- a/download/index.php
+++ b/download/index.php
@@ -45,8 +45,7 @@ if ($user->prefs['download']) {
$song = new Song($_REQUEST['song_id']);
$song->format_song();
$song->format_type();
- $song_name = $song->f_artist_full . " - " . $song->title . "." . $song->type;
-
+ $song_name = str_replace('"'," ",$song->f_artist_full . " - " . $song->title . "." . $song->type);
// Use Horde's Browser class to send the right headers for different browsers
// Should get the mime-type from the song rather than hard-coding it.
header("Content-Length: " . $song->size);