Added missing help_context
authorJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 7 Nov 2009 15:34:04 +0000 (15:34 +0000)
committerJanusz Dobrowolski <janusz@frontaccounting.eu>
Sat, 7 Nov 2009 15:34:04 +0000 (15:34 +0000)
sales/inquiry/sales_orders_view.php

index 667c939e215ca5492b371b6eee5bc5b4627fe6fa..f554f25e838c124b6426b3e3eeac9ed5f82bf5f0 100644 (file)
@@ -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);