Index: trunk/admin/include/sections.php =================================================================== diff -u -r34 -r36 --- trunk/admin/include/sections.php (.../sections.php) (revision 34) +++ trunk/admin/include/sections.php (.../sections.php) (revision 36) @@ -448,7 +448,7 @@ return $o; } - function section_header($envar,$navbar=NULL,$extra_title=NULL) + function section_header($envar,$navbar=NULL,$extra_title=NULL, $no_help = false) { global $pathtoroot; global $pathtolocal; @@ -461,11 +461,11 @@ $node = $this->GetCurrentSection(); if(is_object($node)) { - $helpURL = $adminURL."/help/help.php?env=$envar&dstform=popup"; + $helpURL = $adminURL.'/help/help.php?'.( substr($envar,0,3) == 'env' ? '' : 'env=').$envar.'&destform=popup'; $node_key = $node->Get('key'); $o = ""; //background="'.$imagesURL.'/tabnav_left.jpg" - $o .= '
'; + if($no_help == false) $o .= '
'; $o .= ''; $o .= '"; - $o .= "
'; @@ -499,8 +499,8 @@ $o .= "::".$navbar.""; $o .= ""; - $o .= "
"; + if($no_help == false) $o .= ""; + $o .= ""; } return $o; }