From a543cd775747e5411943f4fe87c94e7bbf77b4bb Mon Sep 17 00:00:00 2001 From: norahmollo Date: Fri, 2 May 2014 15:22:37 -0400 Subject: [PATCH] BUG-14788 Error en campos tipo "date" Se muestra la alerta ignorando el contenido del campo. --- gulliver/system/class.xmlform.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulliver/system/class.xmlform.php b/gulliver/system/class.xmlform.php index b21f1cfd7..13737407a 100755 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -4299,7 +4299,7 @@ class XmlForm_Field_Date extends XmlForm_Field_SimpleText public $editable; public $onchange; public $renderMode = ''; - public $gridFieldType = 'date'; + public $gridFieldType = ''; /* * Verify the format of a date @@ -4601,9 +4601,9 @@ class XmlForm_Field_Date extends XmlForm_Field_SimpleText * $html .= ''; * * */ - /*if ($this->gridFieldType == '') { + if ($this->gridFieldType == '') { $html .= $this->renderHint(); - }*/ + } return $html; }