Prechádzať zdrojové kódy

fix space text ref CT#7638

aragonc 9 rokov pred
rodič
commit
18b79451a0
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  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) . ' />';
         }
     }
 }