there should be a post variable submitted by the image upload form. Doesn't appear to be. You can change the following lines in upload.gallery.php :
line 50:
| Code: |
$cfg['imageprtn'] = 1;//(isset($cfg['imgprtn']))? 1 : 0;
|
and line 56:
| Code: |
$cfg['thumbprtn'] = 1;//(isset($cfg['tbprtn']))? 1 : 0;
|
What you are doing is assigning the value of the variable manually and bypassing the missing value in the post request. This hardwires proportionality. You'd turn it off by setting the value to 0 instead of 1.