Open lucas-stauder opened 11 months ago
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in functions.php on line 168
if (function_exists("imagecreatefrom${funcext}") == false)
Changing to
if (function_exists("imagecreatefrom{$funcext}") == false)
fixes the problem
Deprecated: Using ${var} in strings is deprecated, use {$var} instead in functions.php on line 168
if (function_exists("imagecreatefrom${funcext}") == false)
Changing to
if (function_exists("imagecreatefrom{$funcext}") == false)
fixes the problem