diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/tagother.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actions/tagother.php b/actions/tagother.php index d4be3dd33..a5129faee 100644 --- a/actions/tagother.php +++ b/actions/tagother.php @@ -37,12 +37,12 @@ class TagotherAction extends Action { } else { $id = $this->trimmed('id'); if (!$id) { - $this->client_error(_('No profile to tag.')); + $this->client_error(_('No id argument.')); return; } $profile = Profile::staticGet('id', $id); - if ($profile) { - $this->client_error(_('No profile to tag.')); + if (!$profile) { + $this->client_error(_('No profile with that ID.')); return; } $this->show_form($profile); |