Fix for cross site OMB posting problem

This commit is contained in:
Zach Copley 2010-02-18 01:47:44 +00:00
parent a80fdf3142
commit 5e60bf2ca6
1 changed files with 3 additions and 5 deletions

View File

@ -29,11 +29,9 @@ require_once 'Auth/Yadis/Yadis.php';
function omb_oauth_consumer()
{
static $con = null;
if (is_null($con)) {
$con = new OAuthConsumer(common_root_url(), '');
}
return $con;
// Don't try to make this static. Leads to issues in
// multi-site setups - Z
return new OAuthConsumer(common_root_url(), '');
}
function omb_oauth_server()