From: jake%acutex.net <> Date: Tue, 19 Jun 2001 08:37:02 +0000 (+0000) Subject: Refixing bug 71396. Each PushGlobalSQLState() needs a PopGlobalSQLState() and this... X-Git-Tag: bugzilla-2.14~79 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aad3b8b5731596f6cc98c9c9bdda9e3bda463af3;p=thirdparty%2Fbugzilla.git Refixing bug 71396. Each PushGlobalSQLState() needs a PopGlobalSQLState() and this file instead had two "pushes". --- diff --git a/editversions.cgi b/editversions.cgi index 381d28ed9f..0ca0b932c6 100755 --- a/editversions.cgi +++ b/editversions.cgi @@ -440,7 +440,7 @@ if ($action eq 'delete') { SendSQL("DELETE FROM attachments WHERE bug_id=$bugid"); SendSQL("DELETE FROM bugs_activity WHERE bug_id=$bugid"); SendSQL("DELETE FROM dependencies WHERE blocked=$bugid"); - PushGlobalSQLState(); + PopGlobalSQLState(); } print "Attachments, bug activity and dependencies deleted.
\n";