Fix output bug in email reminder script

This commit is contained in:
Zach Copley 2011-06-21 10:35:20 -07:00
parent 809482b5fb
commit 9051417605
1 changed files with 2 additions and 1 deletions

View File

@ -99,8 +99,9 @@ if (have_option('u', 'universe')) {
foreach ($reminders as $reminder) {
extract($reminder);
$qm->enqueue(array($type, $opts), 'siterem');
if (!$quiet) { print "Sent pending {$type} reminders to all unconfirmed addresses in the known universe.\n"; }
if (!$quiet) { print "Sent pending {$type} reminders for {$server}.\n"; }
}
if (!$quiet) { print "Done! Reminders sent to all unconfirmed addresses in the known universe.\n"; }
}
}
} else {