From db2d79cd31f6cdf4d7f45b2ef610f3fb40df564d Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 26 Jun 2008 14:11:44 -0400 Subject: some UI changes to the IM settings darcs-hash:20080626181144-34904-87503e70e6705b06ebb6c19910583f4fba1b22e0.gz --- lib/util.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/util.php') diff --git a/lib/util.php b/lib/util.php index 4e318a770..ccaf53123 100644 --- a/lib/util.php +++ b/lib/util.php @@ -322,6 +322,7 @@ function common_input($id, $label, $value=NULL,$instructions=NULL) { function common_checkbox($id, $label, $instructions=NULL, $value='true') { common_element_start('p'); + common_element('label', array('for' => $id), $label); $attrs = array('name' => $id, 'type' => 'checkbox', 'id' => $id, @@ -330,7 +331,6 @@ function common_checkbox($id, $label, $instructions=NULL, $value='true') $attrs['value'] = htmlspecialchars($value); } common_element('input', $attrs); - common_element('label', array('for' => $id), $label); if ($instructions) { common_element('span', 'input_instructions', $instructions); } -- cgit v1.2.3-54-g00ecf