diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-21 03:02:23 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2007-01-21 03:02:23 +0000 |
commit | 4957be23099939f26aef84954c012488653111d0 (patch) | |
tree | d73850d62318ab19c76483d67512398e52ffd2fc /modules/id3 | |
parent | 8e1e11bdb72832ce5297471f21e2b15cf2b95c55 (diff) | |
download | ampache-4957be23099939f26aef84954c012488653111d0.tar.gz ampache-4957be23099939f26aef84954c012488653111d0.tar.bz2 ampache-4957be23099939f26aef84954c012488653111d0.zip |
fixed a problem with catalog builds in windows and fixed a bug I created when I was playing with the album art
Diffstat (limited to 'modules/id3')
-rwxr-xr-x | modules/id3/vainfo.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/id3/vainfo.class.php b/modules/id3/vainfo.class.php index 0c3d1434..cdf793ab 100755 --- a/modules/id3/vainfo.class.php +++ b/modules/id3/vainfo.class.php @@ -50,7 +50,7 @@ class vainfo { */ function vainfo($file,$encoding='',$dir_pattern,$file_pattern) { - $this->filename = stripslashes($file); + $this->filename = $file; if ($encoding) { $this->encoding = $encoding; } |