[Rt-commit] r6868 - in rt/branches/3.6-RELEASE: .

kevinr at bestpractical.com kevinr at bestpractical.com
Thu Feb 1 19:35:49 EST 2007


Author: kevinr
Date: Thu Feb  1 19:35:48 2007
New Revision: 6868

Modified:
   rt/branches/3.6-RELEASE/   (props changed)
   rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs

Log:
 r18261 at sad-girl-in-snow:  kevinr | 2007-02-01 19:29:44 -0500
 * Put the search navigation in the right submenu.  Thanks to Dirk Pape 
   for the patch.


Modified: rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs
==============================================================================
--- rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs	(original)
+++ rt/branches/3.6-RELEASE/html/Ticket/Elements/Tabs	Thu Feb  1 19:35:48 2007
@@ -218,8 +218,7 @@
 if ($args) {
   $tabs->{"i"} = { path      => "Search/Results.html$args",
                    title     => loc('Show Results'),
-                   separator => 1,
-                   subtabs   => $searchtabs };
+                   };
   if ($current_tab =~  "Search/Results.html") {
     $current_tab = "Search/Results.html$args";
   }
@@ -229,6 +228,9 @@
   if ($current_tab =~  "Search/Bulk.html") {
     $current_tab = "Search/Bulk.html$args";
   }
+  foreach my $searchtab (keys %{$searchtabs}) {
+    ($searchtab =~ /^_/) ? $tabs->{"s".$searchtab} = $searchtabs->{$searchtab} : $tabs->{"z_".$searchtab} = $searchtabs->{$searchtab};
+  }
 }
 
 


More information about the Rt-commit mailing list