diff options
author | friendica <info@friendica.com> | 2013-11-30 03:40:25 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-30 03:40:25 -0800 |
commit | 3163731a3d5705dcdd5373c197f7ab9257d9cf17 (patch) | |
tree | 5fe4006b3af001be26a8ed7222462dc2be5f8838 /include | |
parent | 1c5f98440da1b4713d0f5b9f8f6a2d3ca39e23af (diff) | |
download | volse-hubzilla-3163731a3d5705dcdd5373c197f7ab9257d9cf17.tar.gz volse-hubzilla-3163731a3d5705dcdd5373c197f7ab9257d9cf17.tar.bz2 volse-hubzilla-3163731a3d5705dcdd5373c197f7ab9257d9cf17.zip |
hooks getting called twice
Diffstat (limited to 'include')
-rwxr-xr-x | include/plugin.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/plugin.php b/include/plugin.php index fd58fb7dd..4d28909d2 100755 --- a/include/plugin.php +++ b/include/plugin.php @@ -187,7 +187,7 @@ function unregister_hook($hook,$file,$function) { function load_hooks() { $a = get_app(); - if(! is_array($a->hooks)) +// if(! is_array($a->hooks)) $a->hooks = array(); $r = q("SELECT * FROM hook WHERE true ORDER BY priority DESC"); if($r) { @@ -197,6 +197,8 @@ function load_hooks() { $a->hooks[$rr['hook']][] = array($rr['file'],$rr['function']); } } +logger('hooks: ' . print_r($a->hooks,true)); + } /** |