diff options
author | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-25 08:59:23 +0000 |
---|---|---|
committer | Karl 'vollmerk' Vollmer <vollmer@ampache.org> | 2006-01-25 08:59:23 +0000 |
commit | 68308e352b54a9d7e0deb34fcf8b2d1f272d5242 (patch) | |
tree | 5701a92398e68b2e261023270aa22db79cccb4b8 /lib | |
parent | 0237890676fd9556db8d8505e0b84a652eaff33d (diff) | |
download | ampache-68308e352b54a9d7e0deb34fcf8b2d1f272d5242.tar.gz ampache-68308e352b54a9d7e0deb34fcf8b2d1f272d5242.tar.bz2 ampache-68308e352b54a9d7e0deb34fcf8b2d1f272d5242.zip |
fixed batch download showing up even if you didnt have ZLIB compiled in
Diffstat (limited to 'lib')
-rw-r--r-- | lib/general.lib.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/general.lib.php b/lib/general.lib.php index 42419bce..9f985196 100644 --- a/lib/general.lib.php +++ b/lib/general.lib.php @@ -448,6 +448,9 @@ function scrub_in($str) { */ function batch_ok( ) { + /* Also make sure that they have ZLIB */ + if (!function_exists('gzcompress')) { return false; } + // i check this before showing any link // should make it easy to tie to a new pref if you choose to add it if (conf('allow_zip_download') AND $GLOBALS['user']->has_access(25)) { |