summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-16 08:22:58 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-06-16 08:22:58 +0200
commit67cf215f79566b3559ec1491d786e8bc02907b74 (patch)
treec4cd01c258de95c2b18aa777b933f7316362deea /Bugzilla/Search
parentfbe9a7a9a22004e3cc23a61b84148da8a0c300e9 (diff)
downloadbugzilla-67cf215f79566b3559ec1491d786e8bc02907b74.tar.gz
bugzilla-67cf215f79566b3559ec1491d786e8bc02907b74.tar.xz
A few tinderbox bustage fixes from the checkin of bug 24896.
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r--Bugzilla/Search/Recent.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search/Recent.pm b/Bugzilla/Search/Recent.pm
index 14d5ebef4..1498af034 100644
--- a/Bugzilla/Search/Recent.pm
+++ b/Bugzilla/Search/Recent.pm
@@ -87,7 +87,7 @@ sub check {
my $search = $class->SUPER::check(@_);
my $user = Bugzilla->user;
if ($search->user_id != $user->id) {
- ThrowUserError('object_not_found', { id => $search->id });
+ ThrowUserError('object_does_not_exist', { id => $search->id });
}
return $search;
}