1
ladios
BUG: class XoopsFormDateTime
  • 2004/6/14 1:40

  • ladios

  • Just popping in

  • Posts: 7

  • Since: 2003/10/13


Problem:
the date field is not displayed correctly: instead of the
usual 'yyyy-mm-dd', it displays the int value e.g. '1232424123'

Fix:
in the file /class/xoopsform/formdatetime.php
locate-
$this->addElement(new XoopsFormTextDateSelect('', $name.'[date]', $size, $value));
and change it to-
$this->addElement(new XoopsFormTextDateSelect('', $name.'[date]', $size, date('Y-m-d', $value)));