Index: flag.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/flag/includes/Attic/flag.admin.inc,v
retrieving revision 1.1.4.2.2.10
diff -u -r1.1.4.2.2.10 flag.admin.inc
--- flag.admin.inc	7 May 2010 23:39:35 -0000	1.1.4.2.2.10
+++ flag.admin.inc	8 May 2010 02:19:02 -0000
@@ -407,7 +407,7 @@
   $form['link_options']['flag_confirmation'] = array(
     '#type' => 'textfield',
     '#title' => t('Flag confirmation message'),
-    '#default_value' => $flag->flag_confirmation,
+    '#default_value' => isset($flag->flag_confirmation) ? $flag->flag_confirmation : '',
     '#description' => t('Message displayed if the user has clicked the "flag this" link and confirmation is required. Usually presented in the form of a question such as, "Are you sure you want to flag this content?"'),
     '#access' => empty($flag->locked['flag_confirmation']),
   );
@@ -415,7 +415,7 @@
   $form['link_options']['unflag_confirmation'] = array(
     '#type' => 'textfield',
     '#title' => t('Unflag confirmation message'),
-    '#default_value' => $flag->unflag_confirmation,
+    '#default_value' => isset($flag->unflag_confirmation) ? $flag->unflag_confirmation : '',
     '#description' => t('Message displayed if the user has clicked the "unflag this" link and confirmation is required. Usually presented in the form of a question such as, "Are you sure you want to unflag this content?"'),
     '#access' => empty($flag->locked['unflag_confirmation']),
   );
