AllskyTeam / allsky-website

Web interface displaying an image from an allsky camera.
54 stars 42 forks source link

Error Message: Deprecated way of variable addressing in functions.php #141

Open lucas-stauder opened 9 months ago

lucas-stauder commented 9 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