summaryrefslogtreecommitdiffstats
path: root/whine.pl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-11-14 02:50:47 +0100
committerlpsolit%gmail.com <>2005-11-14 02:50:47 +0100
commit03352ccf9bdb6b816e0650f8f76e008a17df87c0 (patch)
tree8a641b8c42abdd70b94bb3a9c87fe9a0788cb6be /whine.pl
parente4fa51953ec018c733040ccf9a478b2e8aac0bac (diff)
downloadbugzilla-03352ccf9bdb6b816e0650f8f76e008a17df87c0.tar.gz
bugzilla-03352ccf9bdb6b816e0650f8f76e008a17df87c0.tar.xz
Bug 313695: buglist.cgi and some other scripts do not use the shadow DB anymore - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=justdave
Diffstat (limited to 'whine.pl')
-rwxr-xr-xwhine.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/whine.pl b/whine.pl
index 52e584011..0c8815368 100755
--- a/whine.pl
+++ b/whine.pl
@@ -323,7 +323,7 @@ while (my $event = get_next_event) {
# We loop for each target user because some of the queries will be using
# subjective pronouns
- Bugzilla->switch_to_shadow_db();
+ $dbh = Bugzilla->switch_to_shadow_db();
for my $target (@{$event->{'mailto'}}) {
my $args = {
'subject' => $event->{'subject'},
@@ -348,7 +348,7 @@ while (my $event = get_next_event) {
mail($args);
}
- Bugzilla->switch_to_main_db();
+ $dbh = Bugzilla->switch_to_main_db();
}
################################################################################