Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for PHP7.0 #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Fix for PHP7.0 #36

wants to merge 1 commit into from

Conversation

cris1
Copy link

@cris1 cris1 commented May 22, 2016

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

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

@Wild1145 Wild1145 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Made this change manually and working perfectly.

@ooooyeahbabe
Copy link

ooooyeahbabe commented Sep 15, 2022

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants