X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=includes%2Fpage%2Fheader.inc;h=147b3293fd49662ac4fb7820f7373bf725bb7ac8;hb=a9e2c0e710a5431ce3c31ef89d4c94bf69538238;hp=87d0ee870c751ad1ba6045a90ff32a2190e1e5f2;hpb=0b63296be54ca46f2f4569eceeec350cb243e743;p=fa-stable.git diff --git a/includes/page/header.inc b/includes/page/header.inc index 87d0ee87..147b3293 100644 --- a/includes/page/header.inc +++ b/includes/page/header.inc @@ -40,9 +40,9 @@ function help_url($context=null) if ($clean) $help_page_url = access_string($help_page_url, true); - return $help_base_url + return htmlspecialchars($help_base_url .urlencode(strtr(ucwords($help_page_url), array(' '=>'', '/'=>'', '&'=>'And'))) - .'&ctxhelp=1&lang='.$country; + .'&ctxhelp=1&lang='.$country); } function send_scripts() @@ -72,7 +72,7 @@ function send_scripts() function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="", $css='') { // titles and screen header - global $path_to_root, $def_app, $use_popup_windows, $help_base_url; + global $path_to_root, $def_app, $use_popup_windows, $help_base_url, $db_connections; if (in_ajax()) return; // just for speed up @@ -113,17 +113,24 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="" if (isset($_SESSION["App"]) && is_object($_SESSION["App"])) $_SESSION["App"]->selected_application = isset($_SESSION["App"]->applications[$sel_app]) ? $sel_app : 'orders'; - + + $page_header_args = func_get_args(); + if(isset($db_connections)) // skip before installation + hook_invoke_all('pre_header', $page_header_args); + $encoding = $_SESSION['language']->encoding; if (!headers_sent()){ - header("Content-type: text/html; charset='$encoding'"); + header("Content-type: text/html; charset=$encoding"); } echo "\n"; echo "dir . "' >\n"; - echo "$title"; + echo "$title"; + if (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident/7.0; rv:11.0') != -1) // IE 11 doesn't work with input file type in form. + echo "\n"; echo ""; echo " \n"; + echo " \n"; if ($css) echo ''; @@ -135,7 +142,7 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="" else echo ""; - include_once($path_to_root . "/themes/".user_theme()."/renderer.php"); + include_once($path_to_root . "/themes/$theme/renderer.php"); $rend = new renderer(); $rend->menu_header($title, $no_menu, $is_index); error_box();