summaryrefslogtreecommitdiffstats
path: root/lib/ui.lib.php
diff options
context:
space:
mode:
authorKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-05 21:58:30 +0000
committerKarl 'vollmerk' Vollmer <vollmer@ampache.org>2008-01-05 21:58:30 +0000
commitec4a5b888a95c8dfb5e3c58836e247212c6c49a1 (patch)
tree1664ac603256f16b28754745bd0e3f7bc6767f99 /lib/ui.lib.php
parentb55fd99e5e5dc39f13e02869a6f6c885b0880a8f (diff)
downloadampache-ec4a5b888a95c8dfb5e3c58836e247212c6c49a1.tar.gz
ampache-ec4a5b888a95c8dfb5e3c58836e247212c6c49a1.tar.bz2
ampache-ec4a5b888a95c8dfb5e3c58836e247212c6c49a1.zip
fixed updating access level for prefs, headers for po files, httpq player skip command and image resize for gif and png
Diffstat (limited to 'lib/ui.lib.php')
-rw-r--r--lib/ui.lib.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ui.lib.php b/lib/ui.lib.php
index b27124fc..ed208f34 100644
--- a/lib/ui.lib.php
+++ b/lib/ui.lib.php
@@ -401,10 +401,10 @@ function img_resize($image,$size,$type,$album_id) {
imagejpeg($img,null,100);
break;
case 'gif':
- imagegif($img,null,100);
+ imagegif($img);
break;
case 'png':
- imagepng($img,null,100);
+ imagepng($img);
break;
}