That's a bug.
/includes/functions/functions_ezpages.php
line 41 says:
Code:
($ez_pages_alturl=='' ? '' : zen_href_link($ez_pages_alturl, 'target="_blank', ($ez_pages_is_ssl=='0' ? 'NONSSL' : 'SSL'), true, true, true));
remove the 'target="_blank', like this:
Code:
($ez_pages_alturl=='' ? '' : zen_href_link($ez_pages_alturl, '', ($ez_pages_is_ssl=='0' ? 'NONSSL' : 'SSL'), true, true, true));
The proper rendering for target=_blank is done later on line 55 (which doesn't need any changes):
Code:
$ez_link .= ($ez_pages_open_new_window == '1' ? '" target="_blank' : '');
Do the same for these files, removing the target="_blank from the zen_href_link function calls, but leaving it later in the file where the link is rendered.
[FONT="Courier New"]/includes/modules/ezpages_bar_footer.php
/includes/modules/ezpages_bar_header.php
/includes/sideboxes/ezpages.php[/FONT]