]> git.mxchange.org Git - friendica-addons.git/commitdiff
[various] Escape global function get_app calls
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 28 Dec 2018 02:03:17 +0000 (21:03 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Fri, 28 Dec 2018 02:03:17 +0000 (21:03 -0500)
ifttt/ifttt.php
impressum/impressum.php
widgets/widgets.php

index 50fa119c9a3a87fce429319b9abd6cbaa8a8cf62..302bc9c1417c233b7105660cde9a0d93b47e1bdc 100644 (file)
@@ -168,7 +168,7 @@ function ifttt_post(App $a)
 
 function ifttt_message($uid, $item)
 {
-       $a = get_app();
+       $a = \get_app();
 
        $_SESSION['authenticated'] = true;
        $_SESSION['uid'] = $uid;
index c5a1c98dbe7a91eaa0be627d7f783bf3cd0efa56..d7cbc6d2d9efb52af81d763cc8b82703e548b224 100644 (file)
@@ -33,7 +33,7 @@ function impressum_uninstall() {
 function impressum_module() {
 }
 function impressum_content() {
-    $a = get_app();
+    $a = \get_app();
     $a->internalRedirect('friendica/');
 }
 
index 927d67463ca3e2a0481ebd1be9cfbcbab235ed58..64f6b62f58d70d48687e86eaeabf0b71bf6e8be5 100644 (file)
@@ -77,7 +77,7 @@ function widgets_module() {
 }
 
 function _abs_url($s){
-       $a = get_app();
+       $a = \get_app();
        return preg_replace("|href=(['\"])([^h][^t][^t][^p])|", "href=\$1".$a->getBaseURL()."/\$2", $s);
 }