17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 2146 Views |
-
Two bugs in photos part.

10 April 2007 at 12:10pm
1.
Class GD located in sapphire/filesystem/GD.php
static function color_web2gd($image, $webColor) {
if(substr($webColor,0,1) == "#") $webColor = substr($webColor,1);
$r = hexdec(substr($webColor,0,2));
$g = hexdec(substr($webColor,2,2));
$b = hexdec(substr($webColor,2,2));
return imagecolorallocate($image, $r, $g, $b);
}$g is the same as $b should be $b = hexdec(substr($webColor,4,2));
2.
If image gets corrupted during upload process i.e. network problems, resizing function will throw Fatal Error or cause a segmentation fault.
-
Re: Two bugs in photos part.

11 April 2007 at 11:33am
Good spotting on number 1, it will fixed for 2.0.1. Thanks!
I'll have a look into number 2..
-
Re: Two bugs in photos part.

11 April 2007 at 7:40pm
Cheers Mateusz; again, like Elijah, its great to see you Google Summer of Coders scanning through code and providing patches, which, as Andy suggests, are now available for download
This supports how you've been ranked for Google to approve for tomorrow's judgement day
| 2146 Views | ||
|
Page:
1
|
Go to Top |



