diff --git uc_donation/uc_donate/uc_donate.module uc_donation/uc_donate/uc_donate.module
index 1cd239e..68ce35f 100755
--- uc_donation/uc_donate/uc_donate.module
+++ uc_donation/uc_donate/uc_donate.module
@@ -202,16 +202,14 @@ function uc_checkout_pane_donate($op, &$arg1, $arg2) {
           $donations = TRUE;
         }
       }
-      if ($donations == FALSE) {
-        $qid = variable_get('uc_donate_featured_queue', 0);
-        if ($qid > 0) {
-          $description = variable_get('uc_donate_featured_description', '');
-          $count = variable_get('uc_donate_featured_count', 1);
-          $contents = uc_donate_featured_pane($arg1, $arg2);
-          drupal_add_js(drupal_get_path('module', 'uc_donate').'/jquery.highlightFade.js');
-          drupal_add_js(drupal_get_path('module', 'uc_donate').'/uc_donate_pane.js');
-          return array('description' => $description, 'contents' => $contents, 'next-button' => FALSE);
-        }
+      $qid = variable_get('uc_donate_featured_queue', 0);
+      if ($qid > 0) {
+        $description = variable_get('uc_donate_featured_description', '');
+        $count = variable_get('uc_donate_featured_count', 1);
+        $contents = uc_donate_featured_pane($arg1, $arg2);
+        drupal_add_js(drupal_get_path('module', 'uc_donate').'/jquery.highlightFade.js');
+        drupal_add_js(drupal_get_path('module', 'uc_donate').'/uc_donate_pane.js');
+        return array('description' => $description, 'contents' => $contents, 'next-button' => FALSE);
       }
       break;
     case 'process':
