diff --git app/drupal/sites/all/modules/contrib/uc_recurring/modules/uc_recurring.uc_authorizenet.inc app/drupal/sites/all/modules/contrib/uc_recurring/modules/uc_recurring.uc_authorizenet.inc
index 78912bb..e41a1be 100644
--- app/drupal/sites/all/modules/contrib/uc_recurring/modules/uc_recurring.uc_authorizenet.inc
+++ app/drupal/sites/all/modules/contrib/uc_recurring/modules/uc_recurring.uc_authorizenet.inc
@@ -93,6 +93,11 @@ function uc_recurring_authorizenet_cim_renew($order, &$fee) {
  * Create form for updating credit card details for recurring fee.
  */
 function uc_recurring_authorizenet_cim_update_form($form_state, $rfid) {
+  // Load fee.
+  $fee = uc_recurring_fee_user_load($rfid);
+  // Load corresponding order.
+  $order = uc_order_load($fee->order_id);
+
   $form['rfid'] = array(
     '#type' => 'value',
     '#value' => $rfid,
