RT 3.8.3 and AT 1.2.4b1 - Batch and Grid updates broken

For those out there using RT 3.8.2 with Asset Tracker 1.2.4b1 - an
upgrade to RT 3.8.3 breaks Batch and Grid updates of Assets.

This is due to a missing method called ACLEquivalenceObjects
in /opt/rt3/local/lib/RTx/AssetTracker/System.pm.

I added this and it restored functionality of both Batch and Grid
updates:

sub ACLEquivalenceObjects {
my $self = shift;
return $self;

}

Otherwise, Asset Tracker works great in 3.8.3 so far.

-Bob

It’s better to return empty list:

sub ACLEquivalenceObjects { return () }On Tue, Jun 2, 2009 at 11:56 PM, BJ Blanchard blabj@dainty.ca wrote:

For those out there using RT 3.8.2 with Asset Tracker 1.2.4b1 - an upgrade
to RT 3.8.3 breaks Batch and Grid updates of Assets.

This is due to a missing method called ACLEquivalenceObjects in
/opt/rt3/local/lib/RTx/AssetTracker/System.pm.

I added this and it restored functionality of both Batch and Grid updates:

sub ACLEquivalenceObjects {
my $self = shift;
return $self;

}

Otherwise, Asset Tracker works great in 3.8.3 so far.

-Bob


The rt-users Archives

Community help: http://wiki.bestpractical.com
Commercial support: sales@bestpractical.com

Discover RT’s hidden secrets with RT Essentials from O’Reilly Media.
Buy a copy at http://rtbook.bestpractical.com

Best regards, Ruslan.