[rt-devel] Issues with RT-3.0.10 and DBIx::SearchBuilder 0.99

Linda Julien julien at bestpractical.com
Thu Apr 22 19:03:30 EDT 2004


Hi folks,

DBIx::SearchBuilder 0.99 unmasked a pre-existing bug in RT, which is
why some of you have seen the problems described with the Group
Membership page.  This bug is described in ticket #5587 at
http://rt3.fsck.com/.

I've applied Aissam's patch, and it will be available in RT 3.0.11,
which we expect to be released next week.

If you're using RT version 3.0.10 or lower, we recommend that you do
upgrade to DBIx::SearchBuilder 0.99, and make Aissam's suggested
changes to RT.

Many thanks to Aissam for the patch, and the description of the
problem.

Thanks,
Linda

   From: BAZZAOUI Aissam <bazzaoui at karavel.com>
   Date: Thu, 22 Apr 2004 16:05:27 +0200

   modify Manson  template :

   - share/html/Admin/Elements/SelectNewGroupMembers

   replace the lines : 

   $users->Limit(FIELD => 'id', VALUE => $RT::SystemUser->id, OPERATOR => '!=' );
   $users->Limit(FIELD => 'id', VALUE => $RT::Nobody->id, OPERATOR => '!=' );

   with 

   $users->Limit(FIELD => 'id', VALUE => $RT::SystemUser->id, OPERATOR => '!=' 
   ,ENTRYAGGREGATOR =>'AND');
   $users->Limit(FIELD => 'id', VALUE => $RT::Nobody->id, OPERATOR => '!=' 
   ,ENTRYAGGREGATOR =>'AND');

   and it should work.



More information about the Rt-devel mailing list