Skip to content
Snippets Groups Projects
Commit 9da8a181 authored by Eric Bremner's avatar Eric Bremner
Browse files

ISTWCMS-6944: fix coding standards

parent a3d7cf02
No related branches found
No related tags found
1 merge request!131ISTWCMS-6944: add label to block title if flag is set
......@@ -760,7 +760,8 @@ function uw_fdsu_theme_resp_preprocess_details(&$variables) {
// is by itself or within the attributes.
if (isset($variables['element'][$index]['#id'])) {
$variables['form_field_id'] = $variables['element'][$index]['#id'];
} elseif (isset($variables['element'][$index]['#attributes']['id'])) {
}
elseif (isset($variables['element'][$index]['#attributes']['id'])) {
$variables['form_field_id'] = $variables['element'][$index]['#attributes']['id'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment