hello, guys,
I just checked you archive plugin. Thanks for giving it away for free. But sorry, rigth now it is still buggy.
1. FRAMES suck, always. There is no need to use frames. Every old newsletter is viewable by it’s link:
http://domain.com/wp-content/plugins/newsletter-archive/view.php?email_id=17 or
There is no need to use a frame.
Quick fix in archive.php
//$url = $attrs['url']; #default sucks with frame
$url=plugins_url().'/newsletter-archive/view.php'; # better
And maybe you should also put an target=_new inside the href
$buffer .= '<a target="_new" href="' . NewsletterModule::add_qs($url, 'email_id=' . $email->id) . '">' . htmlspecialchars($subject) . '</a>';
2. The variables {blog_title} and {date} inside the subject line are NOT reaplace in the listing. Ouch.
Juergen