diff options
author | redmatrix <git@macgirvin.com> | 2016-05-24 01:25:13 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-05-24 01:25:13 -0700 |
commit | 29ba8918093166ac32ef9a727a9b71ba8e01a402 (patch) | |
tree | 16587e74673c7d696f21715db7ede06ca6a332b4 /Zotlabs/Module/Ping.php | |
parent | 25357b208a98cb91dc0b0ed4966b00f2364a8809 (diff) | |
download | volse-hubzilla-29ba8918093166ac32ef9a727a9b71ba8e01a402.tar.gz volse-hubzilla-29ba8918093166ac32ef9a727a9b71ba8e01a402.tar.bz2 volse-hubzilla-29ba8918093166ac32ef9a727a9b71ba8e01a402.zip |
moved enotify
Diffstat (limited to 'Zotlabs/Module/Ping.php')
-rw-r--r-- | Zotlabs/Module/Ping.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Zotlabs/Module/Ping.php b/Zotlabs/Module/Ping.php index bea4a08b7..f0caa4373 100644 --- a/Zotlabs/Module/Ping.php +++ b/Zotlabs/Module/Ping.php @@ -1,12 +1,13 @@ <?php namespace Zotlabs\Module; + /** * @file mod/ping.php * */ require_once('include/bbcode.php'); -require_once('include/notify.php'); + /** * @brief do several updates when pinged. @@ -285,7 +286,7 @@ class Ping extends \Zotlabs\Web\Controller { foreach($r as $item) { if((argv(1) === 'home') && (! intval($item['item_wall']))) continue; - $result[] = format_notification($item); + $result[] = \Zotlbas\Lib\Enotify::format($item); } } // logger('ping (network||home): ' . print_r($result, true), LOGGER_DATA); |