]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make createAnonProfile() static
authorZach Copley <zach@status.net>
Wed, 29 Sep 2010 23:11:32 +0000 (16:11 -0700)
committerZach Copley <zach@status.net>
Wed, 29 Sep 2010 23:35:16 +0000 (16:35 -0700)
plugins/AnonymousFave/AnonymousFavePlugin.php

index 264cad174809af114fb84f9c3992f95ce9ccbdd3..47eebef9bae187b3dbb064296bb1c088ca173b4a 100644 (file)
@@ -203,7 +203,7 @@ class AnonymousFavePlugin extends Plugin {
         $tally = Fave_tally::decrement($notice->id);
     }
 
-    function createAnonProfile() {
+    static function createAnonProfile() {
 
         // Get the anon user's IP, and turn it into a nickname
         list($proxy, $ip) = common_client_ip();
@@ -253,7 +253,7 @@ class AnonymousFavePlugin extends Plugin {
             // Do Profile lookup by ID instead of nickname for safety/performance
             $profile = Profile::staticGet('id', $id);
         } else {
-            $profile = $this->createAnonProfile();
+            $profile = AnonymousFavePlugin::createAnonProfile();
             // Obfuscate so it's hard to figure out the Profile ID
             $_SESSION['anon_token'] = base64_encode($profile->nickname);
         }