LookingGlass icon indicating copy to clipboard operation
LookingGlass copied to clipboard

Fix for PHP7.0

Open cris1 opened this issue 8 years ago • 1 comments

This adjustment fixed the "PHP Fatal error: Uncaught Error: Function name must be a string in Ajax.php" for me running PHP7.0

cris1 avatar May 22 '16 08:05 cris1

$output = $lg->$_GET['cmd']($_GET['host']); Change to $output = $lg->{$_GET['cmd']}($_GET['host']);

ooooyeahbabe avatar Sep 15 '22 05:09 ooooyeahbabe