diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-13 12:03:55 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-13 12:03:55 -0700 |
commit | ab73a4092ff70a87ced1d7ffcfbe9bcee788f1f3 (patch) | |
tree | 2711e512664f5057b3a26a40af78ce5329dfe326 | |
parent | d9720b77e9c4455df3e3237c285ad5a33afdd591 (diff) |
Correct typo in method name
-rw-r--r-- | modules/user/libraries/drivers/Identity/Gallery.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/libraries/drivers/Identity/Gallery.php b/modules/user/libraries/drivers/Identity/Gallery.php index b287ed4c..f631bd63 100644 --- a/modules/user/libraries/drivers/Identity/Gallery.php +++ b/modules/user/libraries/drivers/Identity/Gallery.php @@ -166,7 +166,7 @@ class Identity_Gallery_Driver implements Identity_Driver { * @param string search value * @return Group_Core the group object, or null if the name was invalid. */ - public function lookup_user_by_field($field_name, $value) { + public function lookup_group_by_field($field_name, $value) { try { $user = model_cache::get("group", $value, $field_name); if ($user->loaded) { |