Les sous-répertoires sites/all/modules/uc_followup/images et sites/all/modules/uc_followup_new/images sont identiques.
diff -u sites/all/modules/uc_followup/uc_followup.module sites/all/modules/uc_followup_new/uc_followup.module
--- sites/all/modules/uc_followup/uc_followup.module	2010-06-30 02:19:49.000000000 +0200
+++ sites/all/modules/uc_followup_new/uc_followup.module	2010-10-28 21:47:47.165770774 +0200
@@ -160,23 +160,23 @@
         switch ($follow_up->is_recurring) {
 
           // Before expiration/rebill attempt.
-          case FOLLOWUP_RECURRING_BEFORE_EXPIRATION : $where = '(fus.date IS NULL AND (ru.next_charge - %d * 3600 < UNIX_TIMESTAMP())) AND (ru.remaining_intervals <> 0) '; break;
+          case FOLLOWUP_RECURRING_BEFORE_EXPIRATION : $where = '(fus.date IS NULL AND (ru.next_charge - %d * 3600 < '.time().')) AND (ru.remaining_intervals <> 0) '; break;
 
           // After successful rebill. Date greater that current date + hours
           case FOLLOWUP_RECURRING_AFTER_SUCCESSFUL_REBILL : {
-            $where = '(fus.date IS NULL AND (coalesce(oac.created, ru.created) + %d * 3600 < UNIX_TIMESTAMP())) AND (ru.remaining_intervals <> 0) ';
+            $where = '(fus.date IS NULL AND (coalesce(oac.created, ru.created) + %d * 3600 < '.time().')) AND (ru.remaining_intervals <> 0) ';
             break;
           }
 
           // After unsuccessfull charge, but before expiration.
           case FOLLOWUP_RECURRING_AFTER_UNSUCCESSFULL_CHARGE : {
-            $where = '(fus.date IS NULL AND ((ru.next_charge - coalesce(re.time_to_extend, 0)) + %d * 3600 > UNIX_TIMESTAMP())) AND (ru.remaining_intervals <> 0) AND (ru.attempts > 0) ';
+            $where = '(fus.date IS NULL AND ((ru.next_charge - coalesce(re.time_to_extend, 0)) + %d * 3600 > '. time().')) AND (ru.remaining_intervals <> 0) AND (ru.attempts > 0) ';
             $join = ' LEFT JOIN {uc_recurring_extensions} re on ru.attempts - 1 = re.rebill_attempt ';
             break;
           }
 
           // After expiration.
-          case FOLLOWUP_RECURRING_AFTER_EXPIRATION : $where = '(fus.date IS NULL AND (ru.next_charge + %d * 3600 < UNIX_TIMESTAMP())) AND (ru.remaining_intervals = 0)'; break;
+          case FOLLOWUP_RECURRING_AFTER_EXPIRATION : $where = '(fus.date IS NULL AND (ru.next_charge + %d * 3600 < '. time().')) AND (ru.remaining_intervals = 0)'; break;
         }
         $result = db_query('
         SELECT fus.date, fus.manual, fus.email, sent_count, coalesce(oac.max_order_id, o.order_id) order_id
@@ -208,7 +208,7 @@
           WHERE
             o.order_status = "%s" AND
             /* If date is null, then no messages was previously sent, checking if order modified date is less, than in follow-up */
-            ((fus.date IS NULL AND (o.modified + %d * 3600 < UNIX_TIMESTAMP())) OR
+            ((fus.date IS NULL AND (o.modified + %d * 3600 < .'time().')) OR
             (
               /* If need to send sequence of follow-ups, start sending notifications after (and each) "repeat_after" */
               /* but stop after "repeat_max" times (or never if it is equal to zero). */
@@ -257,4 +257,4 @@
     'user' => $account,
   );
   return $replacements;
-}
\ Pas de fin de ligne à la fin du fichier.
+}
