When JPG thumbs are made, the PhotoPlog JPG Thumb Quality setting is used.
When images are then called for display in PhotoPlog's file.php file, the following is used to avoid double reduction:
Code:
@imagejpeg($photoplog_img_feed,'',100);
However, if you want, in PhotoPlog's file.php file, you can change the above line to the following to use the setting:
Code:
@imagejpeg($photoplog_img_feed,'',$vbulletin->options['photoplog_jpg_quality']);