From 0f8e2094a3cf33a8018ee394e56bad57b3d0f89c Mon Sep 17 00:00:00 2001 From: webchick Date: Tue, 28 Feb 2012 22:09:13 -0800 Subject: [PATCH] Issue #87994 by Rob Loach, Jody Lynn, sun, dropcube, gordon, David_Rothstein, moshe weitzman, aspilicious, quicksketch | piersonr: Fixed Quit clobbering people's work when they click the filter tips link. --- modules/filter/filter.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/filter/filter.module b/modules/filter/filter.module index 71dc21ac513b..0da9a5e928eb 100644 --- a/modules/filter/filter.module +++ b/modules/filter/filter.module @@ -1121,7 +1121,7 @@ function filter_dom_serialize_escape_cdata_element($dom_document, $dom_element, * @ingroup themeable */ function theme_filter_tips_more_info() { - return '

' . l(t('More information about text formats'), 'filter/tips') . '

'; + return '

' . l(t('More information about text formats'), 'filter/tips', array('attributes' => array('target' => '_blank'))) . '

'; } /**