diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-11-02 22:06:31 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-11-02 22:06:31 -0400 |
commit | b3b165da33d96b9abf4b4603907429c488531bd3 (patch) | |
tree | 1b2748e6094e4f0e2be39d3e0261a8543fd78644 /mod | |
parent | c2997cd66f6a1495eecf9b038b5e2de5ec95d14c (diff) | |
download | elgg-b3b165da33d96b9abf4b4603907429c488531bd3.tar.gz elgg-b3b165da33d96b9abf4b4603907429c488531bd3.tar.bz2 |
Refs #4039 updated the theming sandbox for radio button classes
Diffstat (limited to 'mod')
-rw-r--r-- | mod/developers/views/default/theme_preview/forms.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/developers/views/default/theme_preview/forms.php b/mod/developers/views/default/theme_preview/forms.php index 6b59ef6d7..ffb77f3a9 100644 --- a/mod/developers/views/default/theme_preview/forms.php +++ b/mod/developers/views/default/theme_preview/forms.php @@ -20,11 +20,11 @@ ?> </div> <div> - <label for="f3">Radio input (.elgg-input-radio):</label><br /> + <label for="f3">Radio input (.elgg-input-radios):</label><br /> <?php echo elgg_view('input/radio', array( 'name' => 'f3', 'id' => 'f3', - 'options' => array('a' => 1, 'b' => 2), + 'options' => array('a (.elgg-input-radio)' => 1, 'b (.elgg-input-radio)' => 2), )); ?> </div> |