aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Deliver_hooks.php
diff options
context:
space:
mode:
Diffstat (limited to 'Zotlabs/Daemon/Deliver_hooks.php')
-rw-r--r--Zotlabs/Daemon/Deliver_hooks.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/Zotlabs/Daemon/Deliver_hooks.php b/Zotlabs/Daemon/Deliver_hooks.php
index e8b5acef0..4d3ce4e1d 100644
--- a/Zotlabs/Daemon/Deliver_hooks.php
+++ b/Zotlabs/Daemon/Deliver_hooks.php
@@ -2,21 +2,18 @@
namespace Zotlabs\Daemon;
-require_once('include/zot.php');
-
class Deliver_hooks {
- static public function run($argc,$argv) {
+ static public function run($argc, $argv) {
- if($argc < 2)
+ if ($argc < 2)
return;
-
$r = q("select * from item where id = '%d'",
intval($argv[1])
);
- if($r)
- call_hooks('notifier_normal',$r[0]);
+ if ($r)
+ call_hooks('notifier_normal', $r[0]);
}
}