From: Maxious Date: Fri, 05 Oct 2012 05:08:45 +0000 Subject: fix date input again X-Git-Url: http://maxious.lambdacomplex.org/git/?p=contractdashboard.git&a=commitdiff&h=e317d948685b95716a9e05a486f2a7b7455293a4 --- fix date input again --- --- a/displayCalendar.php +++ b/displayCalendar.php @@ -5,9 +5,9 @@ if ($_REQUEST['month']) { - $monthParts = explode("-", str_replace(Array("'","/","\\",'-'), "",$_REQUEST['month'])); - $year = $monthParts[1]; - $month = $monthParts[0]; + $monthParts = explode("-", str_replace(Array("'","/","\\"), "",$_REQUEST['month'])); + $year = str_replace('-', '',$monthParts[1]); + $month = str_replace('-', '',$monthParts[0]); $monthName = date("F Y", mktime(0,0,0,$month,1,$year)); include_header($monthName); @@ -81,7 +81,7 @@ setlocale(LC_MONETARY, 'en_US'); $value = number_format(doubleval($row["val"]), 2); $month_name = date('F', mktime(0, 0, 0, $row[1])); - echo (''.$month_name.' '.$row[0].'$'.$value.'(' .$row['count'].' contracts)'); + echo (''.$month_name.' '.$row[0].'$'.$value.'(' .$row['count'].' contracts)'); } echo ""; }