'weekdays_short'=> array ('' => '--', 'Dom', 'Lun', 'Mar', 'Mié', 'Jue', 'Vie', 'Sáb'),
'weekdays_long' => array ('' => '--', 'Domingo', 'Lunes', 'Martes', 'Miércoles', 'Jueves', 'Viernes', 'Sábado'),
'months_short' => array ('' => '--', 'Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun', 'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'),
- 'months_long' => array ('' => '--', 'Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio', 'Agosto', 'Septimbre', 'Octubre', 'Noviembre', 'Diciembre')
+ 'months_long' => array ('' => '--',
+ 'Enero', 'Febrero', 'Marzo',
+ 'Abril', 'Mayo', 'Junio',
+ 'Julio', 'Agosto', 'Septiembre',
+ 'Octubre', 'Noviembre', 'Diciembre')
)
);
*/
function &getValue() {
if ($this->_selectedDate['Y']) {
- return new Date (sprintf("%04d-%02d-%02d 00:00:00",$this->_selectedDate['Y'],$this->_selectedDate['F'],$this->_selectedDate['d']));
+ return new Date (@sprintf("%04d-%02d-%02d %02d:%02d:00",
+ $this->_selectedDate['Y'], $this->_selectedDate['F'],
+ $this->_selectedDate['d'], $this->_selectedDate['H'],
+ $this->_selectedDate['i']));
} else {
return null;
}