From: Joe Hunt Date: Tue, 21 Jan 2020 09:13:37 +0000 (+0100) Subject: F2 - Customers/Suppliers; F4 - Items. Removed Menu in popup windows. X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=ed66cc3976ee61be8edfbf91947ee9ba6d3882e9;p=fa-stable.git F2 - Customers/Suppliers; F4 - Items. Removed Menu in popup windows. --- diff --git a/inventory/manage/items.php b/inventory/manage/items.php index f95887e0..d0ed1aa5 100644 --- a/inventory/manage/items.php +++ b/inventory/manage/items.php @@ -32,7 +32,7 @@ else { } -page($_SESSION['page_title'], false, false, "", $js); +page($_SESSION['page_title'], @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); diff --git a/purchasing/manage/suppliers.php b/purchasing/manage/suppliers.php index d20e1ac6..fb2409ee 100644 --- a/purchasing/manage/suppliers.php +++ b/purchasing/manage/suppliers.php @@ -20,7 +20,7 @@ if ($SysPrefs->use_popup_windows) if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_($help_context = "Suppliers"), false, false, "", $js); +page(_($help_context = "Suppliers"), @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/ui.inc"); include_once($path_to_root . "/includes/ui/contacts_view.inc"); diff --git a/sales/manage/customers.php b/sales/manage/customers.php index c81f78cb..92f2aca3 100644 --- a/sales/manage/customers.php +++ b/sales/manage/customers.php @@ -20,7 +20,7 @@ if ($SysPrefs->use_popup_windows) if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_($help_context = "Customers"), false, false, "", $js); +page(_($help_context = "Customers"), @$_REQUEST['popup'], false, "", $js); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/banking.inc");