Ver Fonte

fix space text ref CT#7638

aragonc há 9 anos atrás
pai
commit
18b79451a0
1 ficheiros alterados com 2 adições e 1 exclusões
  1. 2 1
      main/inc/lib/pear/HTML/QuickForm/text.php

+ 2 - 1
main/inc/lib/pear/HTML/QuickForm/text.php

@@ -166,6 +166,7 @@ class HTML_QuickForm_text extends HTML_QuickForm_input
                 return '
                         <label {label-for}>{label}</label>
                         <div class="input-group">
+                            
                             {icon}
                             {element}
                         </div>';
@@ -237,7 +238,7 @@ class HTML_QuickForm_text extends HTML_QuickForm_input
         if ($this->_flagFrozen) {
             return $this->getFrozenHtml();
         } else {
-            return '<input' . $this->_getAttrString($this->_attributes) . ' />';
+            return '<input ' . $this->_getAttrString($this->_attributes) . ' />';
         }
     }
 }