diff --git a/features.admin.inc b/features.admin.inc index bfab042..b4a2343 100644 --- a/features.admin.inc +++ b/features.admin.inc @@ -406,14 +406,14 @@ function features_admin_form($form, $form_state) { } } if (!empty($unmet_dependencies)) { - $description .= "
" . t('Unmet dependencies: @dependencies', array('@dependencies' => implode(', ', $unmet_dependencies))) . "
"; + $description .= "
" . t('Unmet dependencies: !dependencies', array('!dependencies' => implode(', ', $unmet_dependencies))) . "
"; $disabled = TRUE; } } if (!empty($module->dependents)) { $disabled = TRUE; - $description .= "
". t('Required by: @dependents', array('@dependents' => implode(', ', $module->dependents))) ."
"; + $description .= "
". t('Required by: !dependents', array('!dependents' => implode(', ', $module->dependents))) ."
"; } // Detect potential conflicts @@ -430,7 +430,7 @@ function features_admin_form($form, $form_state) { $disabled = TRUE; } } - $description .= "
". t('Conflicts with: @conflicts', array('@conflicts' => implode(', ', $module_conflicts))) ."
"; + $description .= "
". t('Conflicts with: !conflicts', array('!conflicts' => implode(', ', $module_conflicts))) ."
"; } $href = "admin/structure/features/{$name}"; @@ -438,7 +438,7 @@ function features_admin_form($form, $form_state) { $form[$package]['status'][$name] = array( '#type' => 'checkbox', '#title' => $module_name, - '#description' => check_plain($description), + '#description' => $description, '#default_value' => $module->status, '#disabled' => $disabled, );