
w. studer - 2014-05-22 13:23:43
Hi, me again ;-)
I noticed a small issue in HtmlForm.FormElement.JsDateTime.class.php
public static function get($name, $id){
$res = new JsDateTime($name, $id);
return $res;
}
result on a STRICT error.
When changing to
public static function get($name, $id = ''){
$res = new JsDateTime($name, $id);
return $res;
}
it works well.
Notice the $id = ''