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/Item.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/Item.php')
-rw-r--r-- | Zotlabs/Module/Item.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index b4f493e5b..041939ad8 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -17,10 +17,10 @@ namespace Zotlabs\Module; */ require_once('include/crypto.php'); -require_once('include/enotify.php'); require_once('include/items.php'); require_once('include/attach.php'); +use \Zotlabs\Lib as Zlib; class Item extends \Zotlabs\Web\Controller { @@ -925,7 +925,7 @@ class Item extends \Zotlabs\Web\Controller { // otherwise it will happen during delivery if(($datarray['owner_xchan'] != $datarray['author_xchan']) && (intval($parent_item['item_wall']))) { - notification(array( + Zlib\Enotify::submit(array( 'type' => NOTIFY_COMMENT, 'from_xchan' => $datarray['author_xchan'], 'to_xchan' => $datarray['owner_xchan'], @@ -943,7 +943,7 @@ class Item extends \Zotlabs\Web\Controller { $parent = $post_id; if(($datarray['owner_xchan'] != $datarray['author_xchan']) && ($datarray['item_type'] == ITEM_TYPE_POST)) { - notification(array( + Zlib\Enotify::submit(array( 'type' => NOTIFY_WALL, 'from_xchan' => $datarray['author_xchan'], 'to_xchan' => $datarray['owner_xchan'], |