File: phpbb/notification/manager.php
Unmodified
Added
Modified
Removed
Line 411 | Line 411 |
---|
foreach ($methods as $method) {
|
foreach ($methods as $method) {
|
// setup the notification methods and add the notification to the queue
| // Do not load non-existent notification methods if (!isset($this->notification_methods[$method])) { continue; }
// Setup the notification methods and add the notification to the queue
|
if (!isset($notification_methods[$method])) { $notification_methods[$method] = $this->get_method_class($method); }
|
if (!isset($notification_methods[$method])) { $notification_methods[$method] = $this->get_method_class($method); }
|
| |
$notification_methods[$method]->add_to_queue($notification); } }
| $notification_methods[$method]->add_to_queue($notification); } }
|