Revert to pre-r19217 which means the label is no longer first (but its consistent again with the upstream code)

This commit is contained in:
Bharat Mediratta
2009-02-01 19:16:28 +00:00
parent 8a4eb9eed2
commit 8bd9d38996

View File

@@ -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()