[Rt-commit] r2289 - in rtfm/branches/2.1-TESTING: . html/RTFM/Article

jesse at bestpractical.com jesse at bestpractical.com
Sat Mar 5 20:12:32 EST 2005


Author: jesse
Date: Sat Mar  5 20:12:32 2005
New Revision: 2289

Modified:
   rtfm/branches/2.1-TESTING/   (props changed)
   rtfm/branches/2.1-TESTING/html/RTFM/Article/Search.html
Log:
 r6381 at hualien:  jesse | 2005-03-05 19:44:40 -0500
 search fix


Modified: rtfm/branches/2.1-TESTING/html/RTFM/Article/Search.html
==============================================================================
--- rtfm/branches/2.1-TESTING/html/RTFM/Article/Search.html	(original)
+++ rtfm/branches/2.1-TESTING/html/RTFM/Article/Search.html	Sat Mar  5 20:12:32 2005
@@ -27,7 +27,7 @@
 
 
 # Don't want to search for a null class when there is no class specced
-my $customfields = RT::FM::CustomFieldCollection->new( $session{'CurrentUser'} );
+my $customfields = RT::CustomFields->new( $session{'CurrentUser'} );
 if ( $ARGS{'Class'} ) {
     my @Classes =
       ( ref $ARGS{'Class'} eq 'ARRAY' )
@@ -92,7 +92,7 @@
 }
 
 my %cfs;
-my $all_cfs = RT::FM::CustomFieldCollection->new($session{'CurrentUser'});
+my $all_cfs = RT::CustomFields->new($session{'CurrentUser'});
 $all_cfs->UnLimit();
 while ( my $cf = $all_cfs->Next ) {
     $cfs{ $cf->Name } = $cf->Id;


More information about the Rt-commit mailing list