diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-02-01 19:16:28 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-02-01 19:16:28 +0000 |
commit | 8bd9d38996412b2f9da26d6122e327ab7d7cc12f (patch) | |
tree | 20ee7f39625c2aec623f6d3a024f086dc88d68a9 /modules | |
parent | 8a4eb9eed248959748b4042fd9d92682d8ca2729 (diff) |
Revert to pre-r19217 which means the label is no longer first (but its consistent again with the upstream code)
Diffstat (limited to 'modules')
-rw-r--r-- | modules/forge/libraries/Form_Checkbox.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forge/libraries/Form_Checkbox.php b/modules/forge/libraries/Form_Checkbox.php index 2fe8af84..c015e437 100644 --- a/modules/forge/libraries/Form_Checkbox.php +++ b/modules/forge/libraries/Form_Checkbox.php @@ -68,7 +68,7 @@ class Form_Checkbox_Core extends Form_Input { $label = ' '.ltrim($label); } - return '<label>'.$label.form::input($data).'</label>'; + return '<label>'.form::input($data).$label.'</label>'; } protected function load_value() |