]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Fix for cross site OMB posting problem
authorZach Copley <zach@status.net>
Thu, 18 Feb 2010 01:47:44 +0000 (01:47 +0000)
committerZach Copley <zach@status.net>
Thu, 18 Feb 2010 01:48:24 +0000 (01:48 +0000)
lib/omb.php

index 0f38a49369fc34c8de680a0b5fe90236c65fe161..17132a594f6ec20ea2e079270d9a791895297f2a 100644 (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()