# This patch file was generated by NetBeans IDE # Following Index: paths are relative to: /home/checkout/southcoast/sites/all/modules/contrib/realname # This patch can be applied using context Tools: Patch action on respective folder. # It uses platform neutral UTF-8 encoding and \n newlines. # Above lines and this line are ignored by the patching process. Index: realname.admin.inc --- realname.admin.inc Base (BASE) +++ realname.admin.inc Locally Modified (Based On LOCAL) @@ -306,8 +306,14 @@ $what = t('You are using the %module module to provide fields.', array('%module' => $module)); if ($type) { + if (!is_array($type)) { $what .= t('The %type type is the source of data.', array('%type' => $type)); } + else { + $types = implode(', ', $type); + $what .= t('Multiple types (%types) are the source of data.', array('%types' => $types)); + } + } $form['heading'] = array( '#type' => 'item',