? fieldset_helper_rewrite_hook.patch
Index: fieldset_helper.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/fieldset_helper/fieldset_helper.module,v
retrieving revision 1.1.2.6
diff -u -p -r1.1.2.6 fieldset_helper.module
--- fieldset_helper.module	21 Jul 2009 15:48:18 -0000	1.1.2.6
+++ fieldset_helper.module	10 Jun 2010 08:14:26 -0000
@@ -346,6 +346,10 @@ function fieldset_helper_state_manager_g
   static $lookup_id_table;
 
   $current_path = $_GET['q'];
+  $param =& new stdClass();
+  $param->current_path = $current_path;
+  module_invoke_all('fieldset_helper_rewite_path', $param);
+  $current_path = $param->current_path;
 
   // Load existing lookup ids for the current path from the database.
   if (!isset($lookup_id_table)) {
@@ -433,4 +437,4 @@ function fieldset_helper_state_manager_g
   else {
     return ($default_value) ? TRUE : FALSE;
   }
-}
\ No newline at end of file
+}
