Maxelweb / ServerRemoteConsoleSAMP

A simple server remote console to manage players and server activities
MIT License
22 stars 9 forks source link

Status page is now showing correctly #3

Closed Maxelweb closed 6 years ago

Maxelweb commented 6 years ago

This is due to a PHP tag not used correctly, as the console has been developed using short_open_tag=ON, which enables the use of <? instead of just <?php.

Maxelweb commented 6 years ago

The fix has been applied to the master branch. With version 1.1, you can enable short_open_tag in your php.ini or change line 82 of views/guestpage.view.php from <? } ?> to <?php } ?>