$notice->_setProfile($map[$notice->profile_id]);
}
} catch (NoProfileException $e) {
- common_log(LOG_WARNING, "Failed to fill profile in Notice with non-existing entry for profile_id: {$e->id}");
+ common_log(LOG_WARNING, "Failed to fill profile in Notice with non-existing entry for profile_id: {$e->profile_id}");
unset($notices[$entry]);
}
}
public function __construct($profile_id, $msg=null)
{
- $this->id = $profile_id;
+ $this->profile_id = $profile_id;
if ($msg === null) {
// TRANS: Exception text shown when no profile can be found for a user.
- // TRANS: %1$s is a user nickname, $2$d is a user ID (number).
- $msg = sprintf(_('There is no profile with id==%u'), $this->id);
+ // TRANS: %u is a profile ID (number).
+ $msg = sprintf(_('There is no profile with id==%u'), $this->profile_id);
}
parent::__construct($msg, 404);