diff options
author | Christopher Vollick <psycotica0@gmail.com> | 2010-04-09 06:03:53 -0400 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-04-09 08:35:13 -0700 |
commit | eefde36fcf5c24c55fb8906374bac5c4c370cb54 (patch) | |
tree | 4d38974ad75bb3f0ba9c8bf989b0fa3382ef58dc /actions | |
parent | 5dbaaed4e68ecae1c78b9493add89df3557c8e98 (diff) |
Undefined Variable in foafgroup.php
Probably just left over from the past.
Diffstat (limited to 'actions')
-rw-r--r-- | actions/foafgroup.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/foafgroup.php b/actions/foafgroup.php index d685554ac..07cca3181 100644 --- a/actions/foafgroup.php +++ b/actions/foafgroup.php @@ -56,7 +56,7 @@ class FoafGroupAction extends Action return false; } - $local = Local_group::staticGet('nickname', $nickname); + $local = Local_group::staticGet('nickname', $this->nickname); if (!$local) { $this->clientError(_('No such group.'), 404); |