]> git.llucax.com Git - mecon/meconlib.git/commitdiff
- Fix de un bug de la funcion que valida las fechas. Si le llegaban los datos vacios...
authorMartín Marrese <marrese@gmail.com>
Tue, 24 Jun 2003 16:49:42 +0000 (16:49 +0000)
committerMartín Marrese <marrese@gmail.com>
Tue, 24 Jun 2003 16:49:42 +0000 (16:49 +0000)
lib/MECON/HTML/QuickForm/mdate.php

index 2697234c23997d1d622c994f3d6bfe999313fd2b..b1fb915a5246ea47f22324e20b7defe4eda45dba 100644 (file)
@@ -119,8 +119,8 @@ class HTML_QuickForm_mdate extends HTML_QuickForm_date
     function validate($valor, $nombre, $formato = '')
     {
         $str = sprintf ("%4d-%02d-%02d",$valor['Y'],$valor['F'],$valor['d']);
     function validate($valor, $nombre, $formato = '')
     {
         $str = sprintf ("%4d-%02d-%02d",$valor['Y'],$valor['F'],$valor['d']);
-    
-        if ($valor['Y'] != '--' && $valor['d'] != '--' && $valor['F'] != '--') {
+   
+        if (($valor['Y'] != '--' && $valor['d'] != '--' && $valor['F'] != '--') && ($valor['Y'] != '' && $valor['d'] != '' && $valor['F'] != '')) {
             return  Validate::date($str, array('format' => '%Y-%m-%d'));
         }
         return true;
             return  Validate::date($str, array('format' => '%Y-%m-%d'));
         }
         return true;