NASM - The Netwide Assembler

NASM Forum => Website and Forum => Topic started by: Bryant Keller on June 11, 2010, 07:37:39 PM

Title: Bug on Main-Page
Post by: Bryant Keller on June 11, 2010, 07:37:39 PM
Support for the PHP Echo shortcut is apparently not supported in the server at this time. Not sure if this is a new thing that was added to the pages header or if support for the echo shortcut was removed, but to keep '?> from showing up at the top of the main page the line:

Code: [Select]
<?= '<?xml version="1.0" encoding="utf-8"?>' ?>
needs to be changed to:

Code: [Select]
<?php echo '<?xml version="1.0" encoding="utf-8"?>'; ?>
either that or just:

Code: [Select]
<?xml version="1.0" encoding="utf-8"?>
and avoid the PHP all together....

Either way should work. I just thought I would point this out.
Title: Re: Bug on Main-Page
Post by: Cyrill Gorcunov on June 23, 2010, 09:03:11 PM
yup, I've sent a patch to Peter yesterday, not sure if patch was correct though :)
hope we will fix it soon. Thanks, Bryant!
Title: Re: Bug on Main-Page
Post by: Keith Kanios on June 24, 2010, 06:36:02 AM
I've implemented the full echo, just in case short-tag support is re-enabled.

There were also short-tags around the latest stable version number and associated link that are now fully qualified and thus fixed.
Title: Re: Bug on Main-Page
Post by: Cyrill Gorcunov on June 24, 2010, 08:12:54 PM
Great! Thanks Keith!
Title: Re: Bug on Main-Page
Post by: Bryant Keller on June 25, 2010, 12:57:04 AM
Awesomeness man! Looks great :)