Correctly check for user's id in replies in user salmon post

This commit is contained in:
Evan Prodromou 2010-09-01 17:10:29 -04:00
parent ab88123373
commit 27626c3abf
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class UsersalmonAction extends SalmonAction
throw new ClientException("In reply to unknown notice");
}
if ($notice->profile_id != $this->user->id &&
!in_array($notice->getReplies(), $this->user->id)) {
!in_array($this->user->id, $notice->getReplies())) {
throw new ClientException("In reply to a notice not by this user and not mentioning this user");
}
} else if (!empty($context->attention)) {