From e8e8efa5bc5aa3adfabca560164f520a402266db Mon Sep 17 00:00:00 2001 From: Janusz Dobrowolski Date: Sat, 7 Nov 2009 15:34:04 +0000 Subject: [PATCH 1/1] Added missing help_context --- sales/inquiry/sales_orders_view.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sales/inquiry/sales_orders_view.php b/sales/inquiry/sales_orders_view.php index 667c939e..f554f25e 100644 --- a/sales/inquiry/sales_orders_view.php +++ b/sales/inquiry/sales_orders_view.php @@ -43,28 +43,28 @@ if ($trans_type == ST_SALESORDER) if (isset($_GET['OutstandingOnly']) && ($_GET['OutstandingOnly'] == true)) { $_POST['order_view_mode'] = 'OutstandingOnly'; - $_SESSION['page_title'] = _("Search Outstanding Sales Orders"); + $_SESSION['page_title'] = _($help_context = "Search Outstanding Sales Orders"); } elseif (isset($_GET['InvoiceTemplates']) && ($_GET['InvoiceTemplates'] == true)) { $_POST['order_view_mode'] = 'InvoiceTemplates'; - $_SESSION['page_title'] = _("Search Template for Invoicing"); + $_SESSION['page_title'] = _($help_context = "Search Template for Invoicing"); } elseif (isset($_GET['DeliveryTemplates']) && ($_GET['DeliveryTemplates'] == true)) { $_POST['order_view_mode'] = 'DeliveryTemplates'; - $_SESSION['page_title'] = _("Select Template for Delivery"); + $_SESSION['page_title'] = _($help_context = "Select Template for Delivery"); } elseif (!isset($_POST['order_view_mode'])) { $_POST['order_view_mode'] = false; - $_SESSION['page_title'] = _("Search All Sales Orders"); + $_SESSION['page_title'] = _($help_context = "Search All Sales Orders"); } } else { $_POST['order_view_mode'] = "Quotations"; - $_SESSION['page_title'] = _("Search All Sales Quotations"); + $_SESSION['page_title'] = _($help_context = "Search All Sales Quotations"); } page($_SESSION['page_title'], false, false, "", $js); -- 2.30.2