Menu

#92 reverse size of photo from get_photo

v1.6
open
nobody
None
5
2007-04-02
2007-04-02
no_comment
No

the next bug is located in the get_photo function. The size of the photo is reversed, to fix it, edit ipbsdk_class.inc.php

search for

$height = ($dimensions['0'] > 0) ? 'height="' . $dimensions['0'] . '" ' : '';
$width = ($dimensions['1'] > 0) ? 'width="' . $dimensions['1'] . '" ' : '';

replace with

$width = ($dimensions['0'] > 0) ? 'width="' . $dimensions['0'] . '" ' : '';
$height = ($dimensions['1'] > 0) ? 'height="' . $dimensions['1'] . '" ' : '';

Discussion


Log in to post a comment.

Monday.com Logo