From d9a10423a4aa1631192624c5ea9c0d5edbf22ae6 Mon Sep 17 00:00:00 2001 From: vinish Date: Sat, 10 Mar 2012 11:37:22 +0530 Subject: [PATCH] ERA Posting additional bug fix. Signed-off-by: vinish --- interface/billing/sl_eob_process.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/interface/billing/sl_eob_process.php b/interface/billing/sl_eob_process.php index 206cff23b..e887c722d 100644 --- a/interface/billing/sl_eob_process.php +++ b/interface/billing/sl_eob_process.php @@ -144,8 +144,9 @@ require_once("$srcdir/billing.inc"); { for ($check_count=1;$check_count<=$out['check_count'];$check_count++) { - - if(isset($_REQUEST['chk'.$out['check_number'.$check_count]])) + $chk_num=$out['check_number'.$check_count]; + $chk_num=str_replace(' ','_',$chk_num); + if(isset($_REQUEST['chk'.$chk_num])) { $check_date=$out['check_date'.$check_count]?$out['check_date'.$check_count]:$_REQUEST['paydate']; $post_to_date=$_REQUEST['post_to_date']!=''?$_REQUEST['post_to_date']:date('Y-m-d'); -- 2.11.4.GIT