diff options
author | Evan Prodromou <evan@controlezvous.ca> | 2008-06-23 23:00:34 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlezvous.ca> | 2008-06-23 23:00:34 -0400 |
commit | 91a35989724ad4dd4b6f283834851f4146816b6a (patch) | |
tree | 526206942e125bb47d5455d19b45c600fc87a349 /lib/util.php | |
parent | be3a44651c47a27907e682a8e4c9e5dd9352a1f6 (diff) |
switch order for checkbox, instructio
darcs-hash:20080624030034-34904-bdcb6197d2050bc37f9daaf6f849aed5890bce53.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 2fa8e9f95..df2a7218b 100644 --- a/lib/util.php +++ b/lib/util.php @@ -319,8 +319,7 @@ function common_input($id, $label, $value=NULL,$instructions=NULL) { common_element_end('p'); } -function common_checkbox($id, $label, $value='true', - $instructions=NULL) +function common_checkbox($id, $label, $instructions=NULL, $value='true') { common_element_start('p'); $attrs = array('name' => $id, |