diff -r -u fasttoggle.orig/fasttoggle.toggle.inc fasttoggle/fasttoggle.toggle.inc
--- fasttoggle.orig/fasttoggle.toggle.inc	2008-08-19 10:12:51 -0500
+++ fasttoggle/fasttoggle.toggle.inc	2008-08-19 13:33:02 -0500
@@ -40,7 +40,11 @@
       // The action is not confirmed. The user came here through a regular link;
       // no AJAX was involved. That means, we need a confirmation form so that
       // we get a POST form.
-      return drupal_get_form('fasttoggle_node_option_confirm', $node, $options[$option][intval(!$node->$option)]);
+      if (variable_get('fasttoggle_label_style', FASTTOGGLE_LABEL_STATUS)){
+        return drupal_get_form('fasttoggle_node_option_confirm', $node, $options[$option][!intval(!$node->$option)]);
+      } else {
+        return drupal_get_form('fasttoggle_node_option_confirm', $node, $options[$option][intval(!$node->$option)]);
+      }
     }
   }
   else {
@@ -92,7 +96,11 @@
       // The action is not confirmed. The user came here through a regular link;
       // no AJAX was involved. That means, we need a confirmation form so that
       // we get a POST form.
-      return drupal_get_form('fasttoggle_user_option_confirm', $user, $options[$option][intval(!$user->$option)]);
+      if (variable_get('fasttoggle_label_style', FASTTOGGLE_LABEL_STATUS)){
+        return drupal_get_form('fasttoggle_user_option_confirm', $user, $options[$option][!intval(!$user->$option)]);
+      } else {
+        return drupal_get_form('fasttoggle_user_option_confirm', $user, $options[$option][intval(!$user->$option)]);
+      }
     }
   }
   else {
@@ -148,7 +156,11 @@
       // The action is not confirmed. The user came here through a regular link;
       // no AJAX was involved. That means, we need a confirmation form so that
       // we get a POST form.
-      return drupal_get_form('fasttoggle_comment_option_confirm', $comment, $options[$option][intval(!$comment->$option)]);
+      if (variable_get('fasttoggle_label_style', FASTTOGGLE_LABEL_STATUS)){
+        return drupal_get_form('fasttoggle_comment_option_confirm', $comment, $options[$option][!intval(!$comment->$option)]);
+      } else {
+        return drupal_get_form('fasttoggle_comment_option_confirm', $comment, $options[$option][intval(!$comment->$option)]);
+      }
     }
   }
   else {
