diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-11-20 19:36:55 -0500 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-11-20 19:36:55 -0500 |
commit | b2fcbba66533b0d9fb51a83badf0560ab08e91b8 (patch) | |
tree | e6acd3d6f2304f3a16b6c7477ea4fcc6432e6de4 | |
parent | 9325fec4f05caeec9742bb9af7ce0c1db08ca329 (diff) |
missed $tags in setTags
darcs-hash:20081121003655-84dde-56051867f44c63546a972dd55d364e3dc43f799c.gz
-rw-r--r-- | actions/tagother.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/tagother.php b/actions/tagother.php index 1bf148743..ed9d7c80d 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -141,7 +141,7 @@ class TagotherAction extends Action { return; } - $result = Profile_tag::setTags($user->id, $profile->id); + $result = Profile_tag::setTags($user->id, $profile->id, $tags); if (!$result) { $this->client_error(_('Could not save tags.')); |