summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwebchick <webchick@24967.no-reply.drupal.org>2012-02-28 22:09:13 -0800
committerwebchick <webchick@24967.no-reply.drupal.org>2012-02-28 22:09:13 -0800
commit0f8e2094a3cf33a8018ee394e56bad57b3d0f89c (patch)
tree04d02f7d45ac7056e0728f927fd966439536279e
parent0025dcbcb1ce4c98f4e1f0e99303d6408646ba61 (diff)
downloadbrdo-0f8e2094a3cf33a8018ee394e56bad57b3d0f89c.tar.gz
brdo-0f8e2094a3cf33a8018ee394e56bad57b3d0f89c.tar.bz2
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.
-rw-r--r--modules/filter/filter.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filter/filter.module b/modules/filter/filter.module
index 71dc21ac5..0da9a5e92 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 '<p>' . l(t('More information about text formats'), 'filter/tips') . '</p>';
+ return '<p>' . l(t('More information about text formats'), 'filter/tips', array('attributes' => array('target' => '_blank'))) . '</p>';
}
/**