[Rt-commit] r4574 - in rt/branches/3.7-EXPERIMENTAL: .

alexmv at bestpractical.com alexmv at bestpractical.com
Thu Feb 23 18:47:11 EST 2006


Author: alexmv
Date: Thu Feb 23 18:47:10 2006
New Revision: 4574

Modified:
   rt/branches/3.7-EXPERIMENTAL/   (props changed)
   rt/branches/3.7-EXPERIMENTAL/html/Search/Build.html

Log:
 r9280 at zoq-fot-pik:  chmrr | 2006-02-23 18:46:21 -0500
  * If we've got an arrayref, deref *that*, not something from %ARGS


Modified: rt/branches/3.7-EXPERIMENTAL/html/Search/Build.html
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/html/Search/Build.html	(original)
+++ rt/branches/3.7-EXPERIMENTAL/html/Search/Build.html	Thu Feb 23 18:47:10 2006
@@ -149,7 +149,7 @@
 
     for( qw(Order OrderBy) ) {
         if (ref $query{$_} eq "ARRAY") {
-            $query{$_} = join( '|', @{ $ARGS{$_} } );
+            $query{$_} = join( '|', @{ $query{$_} } );
         }
     }
     if ( $query{'Format'} ) {


More information about the Rt-commit mailing list