*/
function validate($valor, $nombre, $formato = '')
{
- if ($valor['Y'] != '--' && $valor['d'] != '--' && $valor['m'] != '--') {
+ if ($valor['Y'] != '--' && $valor['d'] != '--' && $valor['F'] != '--') {
return Validate::date($valor['Y'].'-'.$valor['d'].'-'.$valor['F'], array('format' => '%Y-%m-%d'));
}
- else {
- return false;
- }
+ return true;
} // end func validate
}
?>