Merge branch '1.0.x' into testing

* 1.0.x:
  Fix output bug in email reminder script
This commit is contained in:
Zach Copley 2011-06-21 10:36:39 -07:00
commit ba5dc26a76
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 {