From: Joe Hunt Date: Mon, 30 Apr 2007 13:24:05 +0000 (+0000) Subject: The selected menu tab is now shown with same background as hover color. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=1c2b43668e3186d5f9342ee4575253ac958c32ec;p=textcart.git The selected menu tab is now shown with same background as hover color. --- diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 090d3bc..20d784c 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -19,6 +19,11 @@ Legend: ! -> Note $ -> Affected files +30-Apr-2007 Joe Hunt + + The selected menu tab is now shown with same background as hover color. + $ config.php (default tab line 77. Change if you want) + /includes/page/header.inc + 28-Apr-2007 Joe Hunt # When saving work order entries a lot of debug boxes appeared. Fixed # When clicking on the link, Issue, on work order inquires an empty screen appeared. Fixed diff --git a/config.php b/config.php index dd09acd..3c4a026 100644 --- a/config.php +++ b/config.php @@ -73,6 +73,9 @@ /* use Audit Trails in GL */ $use_audit_trail = 0; + /* default start-up tab (orders/AP/stock/manuf/proj/GL/system) */ + $def_app = "orders"; + $dateformats = array("MMDDYYYY", "DDMMYYYY", "YYYYMMDD"); $dateseps = array("/", ".", "-", " "); $thoseps = array(",", ".", " "); diff --git a/includes/page/header.inc b/includes/page/header.inc index b23ecc8..4a74bb7 100644 --- a/includes/page/header.inc +++ b/includes/page/header.inc @@ -3,7 +3,7 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="") { // titles and screen header - global $db_connections, $path_to_root; + global $db_connections, $path_to_root, $def_app; $theme = user_theme(); $local_path_to_root = $path_to_root; @@ -11,6 +11,16 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="" { $no_menu = false; } + if (!isset($_SESSION["sel_app"])) + session_register("sel_app"); + if (isset($_SESSION["App"]) && is_object($_SESSION["App"]) && isset($_SESSION["App"]->selected_application) && + $_SESSION["App"]->selected_application != "") + $sel_app = $_SESSION["App"]->selected_application; + elseif (isset($_SESSION["sel_app"]) && $_SESSION["sel_app"] != "") + $sel_app = $_SESSION["sel_app"]; + else + $sel_app = $def_app; + $_SESSION["sel_app"] = $sel_app; echo "dir . "' >"; echo "$title"; @@ -39,13 +49,13 @@ function page_header($title, $no_menu=false, $is_index=false, $onload="", $js="" { echo "
"; echo ""; echo "
";