[Phphtmllib-devel] SF.net SVN: phphtmllib:[3346] trunk/open2300/lib/modules/wxdate/widgets/ WxDateC
Status: Beta
Brought to you by:
hemna
From: <he...@us...> - 2010-02-22 04:18:33
|
Revision: 3346 http://phphtmllib.svn.sourceforge.net/phphtmllib/?rev=3346&view=rev Author: hemna Date: 2010-02-22 04:18:27 +0000 (Mon, 22 Feb 2010) Log Message: ----------- fixed month Modified Paths: -------------- trunk/open2300/lib/modules/wxdate/widgets/WxDateCalendar.inc Modified: trunk/open2300/lib/modules/wxdate/widgets/WxDateCalendar.inc =================================================================== --- trunk/open2300/lib/modules/wxdate/widgets/WxDateCalendar.inc 2010-02-22 04:14:25 UTC (rev 3345) +++ trunk/open2300/lib/modules/wxdate/widgets/WxDateCalendar.inc 2010-02-22 04:18:27 UTC (rev 3346) @@ -24,7 +24,7 @@ $ts = strtotime($this->date); $this->year = date("Y", $ts); - $this->month = date("n", $ts); + $this->month = date("m", $ts); $this->day = date('j',$ts); Log::Singleton()->debug("date=".$this->date." year = ".$this->year." month = ".$this->month." day = ".$this->day); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |