toshipon / oauth-php

Automatically exported from code.google.com/p/oauth-php
MIT License
0 stars 0 forks source link

Fix PHP short tags #39

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
fixed in r127

Original comment by philfreo on 12 May 2010 at 9:14