]> git.mxchange.org Git - friendica.git/blobdiff - include/plugin.php
New function to complete threads from ostatus postings
[friendica.git] / include / plugin.php
index 7a4a96670d66a7c953a81b2972b8089aef2b2960..12c29d1a6e09f7cabe5ca35b06c8293fa7b43b41 100644 (file)
@@ -158,6 +158,8 @@ function load_hooks() {
 
 if(! function_exists('call_hooks')) {
 function call_hooks($name, &$data = null) {
+       $stamp1 = microtime(true);
+
        $a = get_app();
 
        if((is_array($a->hooks)) && (array_key_exists($name,$a->hooks))) {
@@ -177,7 +179,6 @@ function call_hooks($name, &$data = null) {
                        }
                }
        }
-
 }}