diff --git a/fblikebutton.admin.inc b/fblikebutton.admin.inc
index cdaed7e..5638386 100644
--- a/fblikebutton.admin.inc
+++ b/fblikebutton.admin.inc
@@ -73,7 +73,7 @@ function fblikebutton_dynamic_settings() {
   $form['fblikebutton_dynamic_appearance']['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')),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
     '#default_value' => variable_get('fblikebutton_show_faces', 'show'),
     '#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).'),
   );
@@ -160,7 +160,7 @@ function fblikebutton_static_settings() {
   $form['fblikebutton_static_block_appearance']['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')),
+    '#options' => array('true' => t('Show faces'), 'false' => t('Do not show faces')),
     '#default_value' => variable_get('fblikebutton_bl_show_faces', 'show'),
     '#description' => t('Show profile pictures below the button. Only works with Standard layout'),
   );
@@ -216,4 +216,4 @@ function fblikebutton_static_settings() {
   );
   return system_settings_form($form);
  }
- 
\ No newline at end of file
+ 
