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:38:34 -0700 |
commit | a93d0dc16af0438af59d14f8413dabb80c13b707 (patch) | |
tree | 0a0c9f78f55eaf1b8a1bf8ca291a4ea34379d832 | |
parent | 05e373d29b91cf929d0ac2ad74a90dce264df022 (diff) |
Undefined Variable in foafgroup.php
Probably just left over from the past.
-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); |