From fd22763458a6dad5d13ada12a5f54c59bcba25bd Mon Sep 17 00:00:00 2001 From: Carlos Pacha Date: Thu, 17 Nov 2011 12:23:58 -0400 Subject: [PATCH] BUG 8010 Checkbox no se muestra en modo view cuando labelonright="1" This issue was fixed. there was one variable without value. --- gulliver/system/class.xmlform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulliver/system/class.xmlform.php b/gulliver/system/class.xmlform.php index 871b7970d..2825f97c9 100755 --- a/gulliver/system/class.xmlform.php +++ b/gulliver/system/class.xmlform.php @@ -2360,7 +2360,7 @@ class XmlForm_Field_Checkbox extends XmlForm_Field $checked = (isset ( $value ) && ($value == $this->value)) ? 'checked' : ''; if ($this->labelOnRight) { $html = ''; - $html = " + $html = " " . $this->label . ''; } else { $html = "";