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

View File

@ -99,8 +99,9 @@ if (have_option('u', 'universe')) {
foreach ($reminders as $reminder) { foreach ($reminders as $reminder) {
extract($reminder); extract($reminder);
$qm->enqueue(array($type, $opts), 'siterem'); $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 { } else {