]> git.llucax.com Git - mecon/meconlib.git/commitdiff
(no commit message)
authorMartín Marrese <marrese@gmail.com>
Wed, 11 Jun 2003 17:35:37 +0000 (17:35 +0000)
committerMartín Marrese <marrese@gmail.com>
Wed, 11 Jun 2003 17:35:37 +0000 (17:35 +0000)
HTML/php/QuickForm/mdate.php

index d1b73efe985b73fc3b190f5faa1dca8467629eec..6be63e19f8f4ebb896792af4b6e15f4dd8063be9 100644 (file)
@@ -118,12 +118,10 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date
      */
     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
 }
 ?>