diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-16 08:22:58 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-16 08:22:58 +0200 |
commit | 67cf215f79566b3559ec1491d786e8bc02907b74 (patch) | |
tree | c4cd01c258de95c2b18aa777b933f7316362deea /Bugzilla | |
parent | fbe9a7a9a22004e3cc23a61b84148da8a0c300e9 (diff) | |
download | bugzilla-67cf215f79566b3559ec1491d786e8bc02907b74.tar.gz bugzilla-67cf215f79566b3559ec1491d786e8bc02907b74.tar.xz |
A few tinderbox bustage fixes from the checkin of bug 24896.
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search/Recent.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Util.pm | 2 |
2 files changed, 2 insertions, 2 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; } diff --git a/Bugzilla/Util.pm b/Bugzilla/Util.pm index 840225fbe..bfe630a8f 100644 --- a/Bugzilla/Util.pm +++ b/Bugzilla/Util.pm @@ -1023,4 +1023,4 @@ if Bugzilla is currently using the shadowdb or not. Used like: $dbh->do("INSERT ..."); } -back +=back |