Do upgrade if you wish, but it's there in 2.0.3 too :) (I guess I should have put out a last call :)
If you edit the template/your_template/templates/tpl_unsubscribe_default.php and change line 14 from:
Code:
<?php if (!isset($_GET['action']) || ($_GET['action'] != 'unsubscribe')) { ?>
to
Code:
<?php if (empty($unsubscribe_address) || ((!isset($_GET['action']) || ($_GET['action'] != 'unsubscribe')))) { ?>
It will always show the "We're sorry you want to unsubscribe" text for blank emails.
The unsubscribe module is set so if a person enters a nonsense email it'll still tell them it's unsubscribed so people can't use it as a way to suss out emails. That's why it always repeats the email a person enters (in case they misspelled their email).
If people wish I can change that so it gives a 'invalid email' error message instead....3 votes gets it.
Bookmarks