[Rt-commit] r13248 - in rt/branches/3.8-TESTING: .
sartak at bestpractical.com
sartak at bestpractical.com
Thu Jun 12 19:42:49 EDT 2008
Author: sartak
Date: Thu Jun 12 19:42:49 2008
New Revision: 13248
Modified:
rt/branches/3.8-TESTING/ (props changed)
rt/branches/3.8-TESTING/lib/RT/Record.pm
Log:
r62334 at onn: sartak | 2008-06-12 19:42:40 -0400
RT::Base is doing its own ISA munging, don't both with use base
Modified: rt/branches/3.8-TESTING/lib/RT/Record.pm
==============================================================================
--- rt/branches/3.8-TESTING/lib/RT/Record.pm (original)
+++ rt/branches/3.8-TESTING/lib/RT/Record.pm Thu Jun 12 19:42:49 2008
@@ -73,13 +73,13 @@
our $_TABLE_ATTR = { };
-use base 'RT::Base';
-
+use RT::Base;
my $base = 'DBIx::SearchBuilder::Record::Cachable';
if ( $RT::Config && $RT::Config->Get('DontCacheSearchBuilderRecords') ) {
$base = 'DBIx::SearchBuilder::Record';
}
eval "require $base" or die $@;
+our @ISA = 'RT::Base';
push @ISA, $base;
# {{{ sub _Init
More information about the Rt-commit
mailing list