aboutsummaryrefslogtreecommitdiff
path: root/fblikebutton.admin.inc
diff options
context:
space:
mode:
authorJeremy Trojan <jer@jerdiggity.com>2011-03-27 12:04:49 -0700
committerJeremy Trojan <jer@jerdiggity.com>2011-03-27 12:04:49 -0700
commit536b98120288435055e5795730219055c1932d0c (patch)
tree9e283f488d486ea80a5082c1a3bcadc56883f67f /fblikebutton.admin.inc
parent48adbcdc150d7872d350ff5641a4942a0cdcd8c0 (diff)
downloadfblikebutton-536b98120288435055e5795730219055c1932d0c.tar.gz
fblikebutton-536b98120288435055e5795730219055c1932d0c.tar.bz2
Committing changes that apparently never took effect.
Diffstat (limited to 'fblikebutton.admin.inc')
-rw-r--r--fblikebutton.admin.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/fblikebutton.admin.inc b/fblikebutton.admin.inc
index a11e682..fdc8d4c 100644
--- a/fblikebutton.admin.inc
+++ b/fblikebutton.admin.inc
@@ -17,13 +17,13 @@ function fblikebutton_admin_settings() {
'#options' => $fblikebutton_node_options,
'#default_value' => variable_get('fblikebutton_node_types', array('page')),
'#description' => t('Each of these content types will have the "like" button automatically added to them.'),
- );/**
+ );
$form['fblikebutton_show_faces'] = array(
'#type' => 'radios',
- '#title' => t('Display faces in the Like box'),
- '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces'))
- '#default_value' => variable_get('fblikebutton_show_faces', array('true')),
+ '#title' => t('Show faces in the Like box'),
+ '#default_value' => variable_get('fblikebutton_show_faces', 'true'),
+ '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
'#description' => t('Should users see the faces of other people who have "liked" the same content?'),
- ); */
+ );
return system_settings_form($form);
}