You are here

function merci_type_setting_after_build in MERCI (Manage Equipment Reservations, Checkout and Inventory) 7.2

1 string reference to 'merci_type_setting_after_build'
merci_form_alter in ./merci.module
Implementation of hook_form_alter().

File

./merci.module, line 684
MERCI - Managed Equipment Reservation Checkout and Inventory

Code

function merci_type_setting_after_build($element) {
  foreach ($element['#description_items'] as $key => $value) {
    $element[$key]['#description'] = $value;
  }
  return $element;
}