From 79a2ddff28056cfdad1ed5a5e9774fc2401b8b12 Mon Sep 17 00:00:00 2001 From: twistor <twistor@473738.no-reply.drupal.org> Date: Fri, 17 Jun 2011 08:37:44 -0500 Subject: [PATCH] Issue #1191450: Fixed mismatch of arguments for t(). --- feeds_ui/feeds_ui.admin.inc | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/feeds_ui/feeds_ui.admin.inc b/feeds_ui/feeds_ui.admin.inc index e906b65c..779b0706 100644 --- a/feeds_ui/feeds_ui.admin.inc +++ b/feeds_ui/feeds_ui.admin.inc @@ -71,7 +71,7 @@ function feeds_ui_overview_form($form, &$form_status) { $importer_form['attached']['#markup'] = l(node_type_get_name($importer->config['content_type']), 'node/add/' . str_replace('_', '-', $importer->config['content_type'])); } else { - $importer_form['attached']['#markup'] = node_type_get_name($importer->config['content_type']); + $importer_form['attached']['#markup'] = check_plain(node_type_get_name($importer->config['content_type'])); } } @@ -231,7 +231,13 @@ function feeds_ui_delete_form($form, &$form_state, $importer) { $title = t('Would you really like to delete the importer @importer?', array('@importer' => $importer->config['name'])); $button_label = t('Delete'); } - return confirm_form($form, $title, 'admin/structure/feeds', t('This action cannot be undone.'), $button_label); + return confirm_form( + $form, + $title, + 'admin/structure/feeds', + t('This action cannot be undone.'), + $button_label + ); } /** @@ -245,7 +251,6 @@ function feeds_ui_delete_form_submit($form, &$form_state) { // Clear cache, deleting a configuration may have an affect on menu tree. feeds_cache_clear(); - } /** @@ -441,7 +446,7 @@ function feeds_ui_plugin_form_submit($form, &$form_state) { // Set the plugin and save feed. $form['#importer']->setPlugin($form_state['values']['plugin_key']); $form['#importer']->save(); - drupal_set_message(t('Changed @type plugin.', array('!type' => $form['#plugin_type']))); + drupal_set_message(t('Changed @type plugin.', array('@type' => $form['#plugin_type']))); } /** -- GitLab