[rt-devel] Bug in 3.0.3pre1 (was: Migrate from Postgres to MySQL)

Autrijus Tang autrijus at autrijus.org
Fri May 30 11:38:07 EDT 2003


On Fri, May 30, 2003 at 02:26:46PM +0200, Ulrich Kiermayr wrote:
> 3.0.3 seems to fix the Problem I reported earlier. But there seems to be 
> a Problem with Principal_Overlay.pm.
> Using the version from 3.0.3pre1 always gives me Permission Denied on 
> all tickets, where the version from 3.0.2 does not.

Yes, I've seen it too.  I've reverted to 3.0.2's Principal_Overlay.pm
and it seems to be fine.

Also, DBIx::SearchBuilder 0.83_02 seems to be broken on my Pg
installation, which is fixed by this patch.

Thanks,
/Autrijus/

--- SearchBuilder.pm.orig       Fri May 30 23:35:43 2003
+++ SearchBuilder.pm    Fri May 30 23:34:06 2003
@@ -1299,7 +1299,7 @@

 sub DESTROY {
   my $self = shift;
-  if( defined $self->dbh ) {
+  if( $self->can('dbh') and defined $self->dbh ) {
     $self->Disconnect();
   }
 }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 187 bytes
Desc: not available
Url : http://pallas.eruditorum.org/pipermail/rt-devel/attachments/20030530/a8e2367b/attachment.pgp


More information about the Rt-devel mailing list