Add date option to the formconfirm formquestion

This commit is contained in:
Maxime Kohlhaas 2015-06-26 17:00:24 +02:00
parent 175cffbec8
commit 17a25ed4a1

View File

@ -3167,6 +3167,13 @@ class Form
$i++;
}
}
else if ($input['type'] == 'date')
{
$more.='<tr><td>'.$input['label'].'</td>';
$more.='<td colspan="2" align="left">';
$more.=$this->select_date($input['value'],$input['name'],0,0,0,'',1,0,1);
$more.='</td></tr>'."\n";
}
else if ($input['type'] == 'other')
{
$more.='<tr><td>';