From 54f19da3ab534f5f416fc4902841439ddbe0f10e Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 29 Sep 2010 16:11:32 -0700 Subject: [PATCH] Make createAnonProfile() static --- plugins/AnonymousFave/AnonymousFavePlugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/AnonymousFave/AnonymousFavePlugin.php b/plugins/AnonymousFave/AnonymousFavePlugin.php index 264cad1748..47eebef9ba 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); }