diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-28 22:56:55 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-12-28 22:56:55 +0000 |
commit | d6e28b752f3f04e418a4c27f37fa67b76596d5ec (patch) | |
tree | 7425e8a886db303672c97ccebc3d145bf5fa8b5d /modules | |
parent | 223143ed3a95ad59ff2945f6746da73992012354 (diff) | |
download | ampache-d6e28b752f3f04e418a4c27f37fa67b76596d5ec.tar.gz ampache-d6e28b752f3f04e418a4c27f37fa67b76596d5ec.tar.bz2 ampache-d6e28b752f3f04e418a4c27f37fa67b76596d5ec.zip |
* Added new Snoopy, fixes some minor bugs
* Rewrote Album Art collection, fixing tons of logic flaws, single album art find is currently broken
might even be a little faster now when using folder and id3 methods at the same time
* Fixed some issues with FastCGI installs
* Removed another upload file that wasn't used anymore
* Tweaked Recently Played to show 'played XXX ago'
Diffstat (limited to 'modules')
-rw-r--r-- | modules/infotools/Snoopy.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/infotools/Snoopy.class.php b/modules/infotools/Snoopy.class.php index f625f67a..77e5b731 100644 --- a/modules/infotools/Snoopy.class.php +++ b/modules/infotools/Snoopy.class.php @@ -1013,7 +1013,7 @@ class Snoopy $headerfile = tempnam($temp_dir, "sno"); $safer_URI = strtr( $URI, "\"", " " ); // strip quotes from the URI to avoid shell access - exec(escapeshellcmd($this->curl_path." -D \"$headerfile\"".$cmdline_params." \"".$safer_URI."\""),$results,$return); + exec($this->curl_path." -D \"$headerfile\"".$cmdline_params." \"".$safer_URI."\"",$results,$return); if($return) { |