From: Joe Hunt Date: Thu, 26 Jun 2008 22:07:54 +0000 (+0000) Subject: ixed a misspelled parameter (OutstandingOnly) in manufacturing.php X-Git-Tag: v2.4.2~19^2~1964 X-Git-Url: https://delta.frontaccounting.com/gitweb/?p=fa-stable.git;a=commitdiff_plain;h=e8c94a4e8a6c20a7358208c0b5cb5623dbcba5e2 ixed a misspelled parameter (OutstandingOnly) in manufacturing.php --- diff --git a/applications/manufacturing.php b/applications/manufacturing.php index 3864ca60..d16d4fa3 100644 --- a/applications/manufacturing.php +++ b/applications/manufacturing.php @@ -1,16 +1,16 @@ application("manuf",_("Manufacturing")); $this->add_module(_("Transactions")); $this->add_lapp_function(0, _("Work Order Entry"),"manufacturing/work_order_entry.php?"); - $this->add_lapp_function(0, _("Outstanding Work Orders"),"manufacturing/search_work_orders.php?OutstandingOnly=1"); + $this->add_lapp_function(0, _("Outstanding Work Orders"),"manufacturing/search_work_orders.php?outstanding_only=1"); $this->add_module(_("Inquiries and Reports")); //$this->add_lapp_function(1, _("Costed Bill Of Material Inquiry"),"manufacturing/inquiry/bom_cost_inquiry.php?"); @@ -28,7 +28,7 @@ if ($mod["tab"] == "manuf") $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?"); } - } + } } }