Merge pull request #468 from juillerat/master

fixing #467 and correcting image sharpening on PHP 7.0 with GD
This commit is contained in:
modus75
2016-12-11 21:04:38 +01:00
committed by GitHub
+1 -2
View File
@@ -301,10 +301,9 @@ class pwg_image
for ($i=0; $i<3; $i++)
{
$line = & $matrix[$i];
for ($j=0; $j<3; $j++)
{
$line[$j] /= $norm;
$matrix[$i][$j] /= $norm;
}
}