Merge pull request #1078 from jloguercio/formValidator

Fix FormValidator Css span required visual bug effect (1.11.x) - NoRefs
ofaj
Yannick Warnier 9 years ago
commit fc1c5d46fb
  1. 11
      main/inc/lib/pear/HTML/Table/Storage.php

@ -769,17 +769,18 @@ class HTML_Table_Storage extends HTML_Common {
}
$typeContent = $tabs . $tab . $tab . $extraTab . "<$type" . $this->_getAttrString($attr) . '>';
if (empty($contents)) {
if ($contents || is_numeric($contents)) {
$typeContent .= $contents;
} elseif (empty($contents)) {
if (isset($this->_autoFill) && $this->_autoFill) {
$contents = $this->_autoFill;
}
} else {
$typeContent .= $contents;
}
$typeContent .= "</$type>" . $lnEnd;
if (!empty($contents)) {
if (!empty($contents) || is_numeric($contents)) {
$strHtml .= $typeContent;
}

Loading…
Cancel
Save