In example/server/www/services.xrds.php, it uses PHP short tags in several
places, like:
<URI>http://<?=$server?>/oauth/request_token</URI>
For open source projects, it's best to use the typical php tags since many
servers have short tags
disabled.
<URI>http://<?php echo $server; ?>/oauth/request_token</URI>
If you'd like to make me a committer, I can submit small changes like these
myself.
Original issue reported on code.google.com by philfreo on 12 May 2010 at 6:16
Original issue reported on code.google.com by
philfreo
on 12 May 2010 at 6:16