You are here

function uc_recurring_order_update_6000 in UC Recurring Payments and Subscriptions 6.2

Same name and namespace in other branches
  1. 7.2 modules/uc_recurring_order/uc_recurring_order.install \uc_recurring_order_update_6000()

Remove variables that are just holding strings, if you want to edit strings then there are better ways then via variables.

File

modules/uc_recurring_order/uc_recurring_order.install, line 7

Code

function uc_recurring_order_update_6000() {
  $ret = array();
  variable_del('uc_recurring_pane_description');
  variable_del('uc_recurring_pane_order_pane_title');
  variable_del('uc_recurring_pane_order_pane_empty');
  return $ret;
}