]> git.llucax.com Git - mecon/meconlib.git/blobdiff - HTML/php/QuickForm/mdate.php
(no commit message)
[mecon/meconlib.git] / HTML / php / QuickForm / mdate.php
index e3642865325a2f3ed6cbd4a8d6df4e3631e7a442..6be63e19f8f4ebb896792af4b6e15f4dd8063be9 100644 (file)
@@ -116,8 +116,12 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date
      * @access public
      * @return bool
      */
      * @access public
      * @return bool
      */
-    function validate($fecha)
+    function validate($valor, $nombre, $formato = '')
     {
     {
-        return Validate::date($fecha, array('format' => '%Y-%m-%d'))
+        if ($valor['Y'] != '--' && $valor['d'] != '--' && $valor['F'] != '--') {
+            return Validate::date($valor['Y'].'-'.$valor['d'].'-'.$valor['F'], array('format' => '%Y-%m-%d'));
+        }
+        return true;
     } // end func validate
     } // end func validate
+}
 ?>
 ?>