I have also suggested this to be in the Admin-panel.
When watermarks are applied to animated gif's, the animation breaks.
This tweak prevents GIF's from being watermaked while other formats works just fine.
Open app\lib\classes\class.image.php
Remark line 373 & 451 with //
Line 373 should look like this:
	
	
	
		
Line 451 should look like this:
	
	
	
		
				
			When watermarks are applied to animated gif's, the animation breaks.
This tweak prevents GIF's from being watermaked while other formats works just fine.
Open app\lib\classes\class.image.php
Remark line 373 & 451 with //
Line 373 should look like this:
		PHP:
	
	               switch($upload->uploaded['fileinfo']['extension']) {
                    case 'gif':
//                        $src = imagecreatefromgif($upload->uploaded['file']);
                    break;
	Line 451 should look like this:
		PHP:
	
	       switch($upload->uploaded['fileinfo']['extension']) {
           case 'gif':
//                imagegif($src, $upload->uploaded['file']);
           break;