This issue causes problems in some websites for users of IE. Users are forced to press the back button and if post data had already been submitted then users will receive and error that the webpage has expired. By opening it in a new window this can be prevented.

Here's the code to change I suggest it's put in.

[code]
function theme_better_formats_filter_tips_more_info() {
$text = variable_get('better_formats_long_tips_link_text', '');
if (module_exists('i18n_strings') && $text) {
$text = tt($text);
}
else {
$text = $text ? $text : t('More information about formatting options');
}
return '

' . l($text, 'filter/tips', array('attributes' => array('target' => '_blank'))) . '

';
}
[/code]

Comments

dragonwize’s picture

Status: Active » Closed (duplicate)
mikejonesok’s picture

Works great thanks!