From f40103963bad8561a4739958ed9291b111bc9ea1 Mon Sep 17 00:00:00 2001 From: "Ap.Muthu" Date: Sun, 14 Apr 2013 16:11:29 +0530 Subject: [PATCH] Missing Parenthesis fixed --- interface/billing/billing_report.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/billing/billing_report.php b/interface/billing/billing_report.php index 839ce12e9..7ce01feea 100644 --- a/interface/billing/billing_report.php +++ b/interface/billing/billing_report.php @@ -25,7 +25,7 @@ $EXPORT_INC = "$webserver_root/custom/BillingExport.php"; $alertmsg = ''; -if (isset($_POST['mode']) { +if (isset($_POST['mode'])) { if ($_POST['mode'] == 'export') { $sql = ReturnOFXSql(); $db = get_db(); @@ -66,7 +66,7 @@ $from_date = isset($_POST['from_date']) ? $_POST['from_date'] : date('Y-m- $to_date = isset($_POST['to_date' ]) ? $_POST['to_date' ] : ''; $code_type = isset($_POST['code_type']) ? $_POST['code_type'] : 'all'; $unbilled = isset($_POST['unbilled' ]) ? $_POST['unbilled' ] : 'on'; -$my_authorized = isset($_POST["authorized"]) ? $_POST["authorized"] : ''); +$my_authorized = isset($_POST["authorized"]) ? $_POST["authorized"] : ''; // This tells us if only encounters that appear to be missing a "25" modifier -- 2.11.4.GIT