Fix remaining call_hooks
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 21 Jan 2018 05:11:18 +0000 (00:11 -0500)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 21 Jan 2018 05:11:18 +0000 (00:11 -0500)
smileybutton/smileybutton.php
windowsphonepush/windowsphonepush.php

index 4aea34d..2d4a074 100644 (file)
@@ -96,7 +96,7 @@ function show_button($a, &$b) {
 
        // Call hooks to get aditional smileies from other addons
        $params = ['texts' => $texts, 'icons' => $icons, 'string' => ""]; //changed
-       call_hooks('smilie', $params);
+       Addon::callHooks('smilie', $params);
 
        //Generate html for smiley list
        $s = "<table class=\"smiley-preview\"><tr>\n\t";
index 861bb7a..032a536 100644 (file)
@@ -470,5 +470,5 @@ function windowsphonepush_login(App $a)
        require_once 'include/security.php';
        authenticate_success($record);
        $_SESSION["allow_api"] = true;
-       call_hooks('logged_in', $a->user);
+       Addon::callHooks('logged_in', $a->user);
 }