--- fblikebutton.admin.inc	2011-05-29 21:55:58.000000000 +0200
+++ new-fblikebutton.admin.inc	2011-06-01 12:18:18.000000000 +0200
@@ -53,8 +53,8 @@ function fblikebutton_admin_settings() {
   $form['fblikebutton_show_faces'] = array(
     '#type' => 'select',
     '#title' => t('Show faces in the box?'),
-    '#options' => array('show' => t('Show faces'), 'hide' => t('Do not show faces')),
-    '#default_value' => variable_get('fblikebutton_show_faces', 'show'),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
+    '#default_value' => variable_get('fblikebutton_show_faces', 'true'),
     '#description' => t('Show profile pictures below the button. Only works if <em>Layout style</em> (found above) is set to <em>Standard</em> (otherwise, value is ignored).'),
   );
   $form['fblikebutton_action'] = array(
@@ -125,8 +125,8 @@ function fblikebutton_block_settings() {
   $form['fblikebutton_block']['fblikebutton_bl_show_faces'] = array(
     '#type' => 'select',
     '#title' => t('Display faces in the box'),
-    '#options' => array('show' => t('Show faces'), 'hide' => t('Do not show faces')),
-    '#default_value' => variable_get('fblikebutton_bl_show_faces', 'show'),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
+    '#default_value' => variable_get('fblikebutton_bl_show_faces', 'true'),
     '#description' => t('Show profile pictures below the button. Only works with Standard layout'),
   );
   $form['fblikebutton_block']['fblikebutton_bl_action'] = array(
@@ -175,4 +175,4 @@ function fblikebutton_block_settings() {
   );
   return system_settings_form($form);
  }
- 
\ No newline at end of file
+ 
