diff options
author | Zach Copley <zach@status.net> | 2010-09-29 16:11:32 -0700 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-09-29 16:35:16 -0700 |
commit | 54f19da3ab534f5f416fc4902841439ddbe0f10e (patch) | |
tree | 7b4cfb8992727e3801584c3bfad80bb3340f880d | |
parent | f79f44801cfd76b7e9e4cbfb94917bc8b395a886 (diff) |
Make createAnonProfile() static
-rw-r--r-- | plugins/AnonymousFave/AnonymousFavePlugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 264cad174..47eebef9b 100644 --- a/plugins/AnonymousFave/AnonymousFavePlugin.php +++ b/plugins/AnonymousFave/AnonymousFavePlugin.php @@ -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); } |