From: garvinhicking Date: Mon, 24 Jul 2006 07:16:39 +0000 (+0000) Subject: fix parse error :) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=ccd9ae212e7f982043155f36807612918bbdd5af;p=s9y.git fix parse error :) --- diff --git a/include/functions_calendars.inc.php b/include/functions_calendars.inc.php index 102fe84..421775a 100644 --- a/include/functions_calendars.inc.php +++ b/include/functions_calendars.inc.php @@ -440,7 +440,7 @@ function persian_date_utf($format, $timestamp='') { * @return int returned timestamp */ function persian_mktime($hour='', $min='', $sec='', $mon='', $day='', $year='', $is_dst=-1){ - $j_days_in_month = array(, 31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29); + $j_days_in_month = array(31, 31, 31, 31, 31, 31, 30, 30, 30, 30, 30, 29); if ( (string) $hour == '') { $hour = persian_date_utf('H'); } if ( (string) $min == '') { $min = persian_date_utf('i'); }