Index: trunk/admin/include/sections.php =================================================================== diff -u -r396 -r440 --- trunk/admin/include/sections.php (.../sections.php) (revision 396) +++ trunk/admin/include/sections.php (.../sections.php) (revision 440) @@ -413,9 +413,10 @@ if( in_array($module_name, $url_split) ) return 1; // module section match - if( isset($_REQUEST['section']) ) + $section = GetVar('section'); + if($section) { - $section = explode(':', $_GET['section']); + $section = explode(':', $section); if( $section[0] == $module_name ) return true; } return false; @@ -463,7 +464,7 @@ return $o; } - function section_header($envar,$navbar=NULL,$extra_title=NULL, $no_help = false) + function section_header($envar,$navbar=NULL,$extra_title=NULL, $no_help = false, $OtherSection = '') { global $pathtoroot; global $pathtolocal; @@ -512,7 +513,7 @@ $o .= $output; if(strlen($navbar)) $o .= "::".$navbar.""; - + if($OtherSection) $node_key = $OtherSection; $o .= ""; if($no_help == false) $o .= ""; $o .= "";