diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-12-08 02:29:58 -0500 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-12-08 02:29:58 -0500 |
commit | 62c9a4b81b4ed22237944c14df96862d63f7a681 (patch) | |
tree | 16a2cff42c002bbb0711ed01f105708758096d34 | |
parent | 2ced62bd7ef31f91cc1b4a145f47b074e1fbcd0d (diff) |
static to not static
darcs-hash:20081208072958-5ed1f-3476745ea503bb234d81a7513cd84db789239871.gz
-rw-r--r-- | classes/Profile_block.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Profile_block.php b/classes/Profile_block.php index d6a3e7288..1bc63c0d1 100644 --- a/classes/Profile_block.php +++ b/classes/Profile_block.php @@ -20,7 +20,7 @@ class Profile_block extends Memcached_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE - static function get($blocker, $blocked) { + function get($blocker, $blocked) { return Profile_block::pkeyGet(array('blocker' => $blocker, 'blocked' => $blocked)); } |