You are here

function merci_update_6208 in MERCI (Manage Equipment Reservations, Checkout and Inventory) 6.2

File

./merci.install, line 660
merci Installer / Uninstaller

Code

function merci_update_6208() {
  $ret = array();
  $results = db_query("SELECT type,grouping FROM {merci_node_type}");
  while ($result = db_fetch_array($results)) {
    variable_set('merci_grouping_' . $result['type'], $result['grouping']);
  }
  return $ret;
}