Fix mistyped method name

This commit is contained in:
Tautvidas Sipavičius
2016-03-04 18:03:02 +02:00
parent 01c9096543
commit c93ec629ea

View File

@ -149,7 +149,7 @@ class Hooks {
} }
function setupCronWorkers() { function setupCronWorkers() {
add_action('mailpoet_cron_worker', array($this, 'runShedulerWorker'), 10, 1); add_action('mailpoet_cron_worker', array($this, 'runSchedulerWorker'), 10, 1);
add_action('mailpoet_cron_worker', array($this, 'runSendingQueueWorker'), 10, 1); add_action('mailpoet_cron_worker', array($this, 'runSendingQueueWorker'), 10, 1);
} }