From 1827c9841d0505158602d977571f256269d5a797 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 18 May 2010 20:53:29 +0000 Subject: - Patch #486246 by mustafau, alex_b, Berdir, mr.baileys: bring back form for aggregator_allowed_html_tags() because it was accidentically removed. --- modules/aggregator/aggregator.admin.inc | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'modules/aggregator/aggregator.admin.inc') diff --git a/modules/aggregator/aggregator.admin.inc b/modules/aggregator/aggregator.admin.inc index 8570a0d4e..4deaf6085 100644 --- a/modules/aggregator/aggregator.admin.inc +++ b/modules/aggregator/aggregator.admin.inc @@ -395,6 +395,16 @@ function aggregator_admin_refresh_feed($feed) { * @ingroup forms */ function aggregator_admin_form($form, $form_state) { + // Global aggregator settings. + $form['aggregator_allowed_html_tags'] = array( + '#type' => 'textfield', + '#title' => t('Allowed HTML tags'), + '#size' => 80, + '#maxlength' => 255, + '#default_value' => variable_get('aggregator_allowed_html_tags', '
      • '), + '#description' => t('A space-separated list of HTML tags allowed in the content of feed items. Disallowed tags are stripped from the content.'), + ); + // Make sure configuration is sane. aggregator_sanitize_configuration(); -- cgit v1.2.3