From: Frédéric Buclin Date: Thu, 6 Dec 2012 18:12:15 +0000 (+0100) Subject: Fix regression due to bug 787668: The Bugzilla::DB::Oracle::st package requires ... X-Git-Tag: bugzilla-4.5.1~273 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3966e91e3d5b82148718b37719d887dbe1687f23;p=thirdparty%2Fbugzilla.git Fix regression due to bug 787668: The Bugzilla::DB::Oracle::st package requires -norequire to load DBI::st --- diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm index aaf289b41d..a4276ab7ad 100644 --- a/Bugzilla/DB/Oracle.pm +++ b/Bugzilla/DB/Oracle.pm @@ -720,7 +720,7 @@ package Bugzilla::DB::Oracle::st; use 5.10.1; use strict; -use parent qw(DBI::st); +use parent -norequire, qw(DBI::st); sub fetchrow_arrayref { my $self = shift;