diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-09-29 21:08:12 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-09-29 21:08:12 -0700 |
commit | 928fa44154e2d4ecbb2f08d30f428682b8d55e34 (patch) | |
tree | efe73e15605a698779bbe6d31cce6a18688adeae /include/notifier.php | |
parent | a795f03c486c0d6c32badc9850870f95d8d09059 (diff) | |
download | volse-hubzilla-928fa44154e2d4ecbb2f08d30f428682b8d55e34.tar.gz volse-hubzilla-928fa44154e2d4ecbb2f08d30f428682b8d55e34.tar.bz2 volse-hubzilla-928fa44154e2d4ecbb2f08d30f428682b8d55e34.zip |
more work on the notifier
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/notifier.php b/include/notifier.php index 3b29229cf..db1aa9690 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -605,11 +605,16 @@ function notifier_run($argv, $argc){ 'request' => $request, 'normal_mode' => $normal_mode, 'packet_type' => $packet_type, - 'walltowall' => $walltowall + 'walltowall' => $walltowall, + 'queued' => array() ); call_hooks('notifier_hub',$narr); + if($narr['queued']) { + foreach($narr['queued'] as $pq) + $deliveries[] = $pq; + } continue; } |