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.
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 } ?>
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
.