]> git.mxchange.org Git - friendica.git/commitdiff
get_basepath() uses a lot $this (which means object-referenced calls, or
authorRoland Häder <roland@mxchange.org>
Thu, 15 Dec 2016 09:03:06 +0000 (10:03 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 15 Dec 2016 09:03:06 +0000 (10:03 +0100)
non-static calls). but still it is called statically in many places.

Signed-off-by: Roland Häder <roland@mxchange.org>
mod/photo.php
mod/proxy.php

index d324818b286247e6df2125b5c6fae917887276f4..a94a3ac2ce57eb97f260689e6cb699b2766ce94f 100644 (file)
@@ -197,7 +197,7 @@ function photo_init(&$a) {
        // If the photo is public and there is an existing photo directory store the photo there
        if ($public and ($file != "")) {
                // If the photo path isn't there, try to create it
-               $basepath = App::get_basepath();
+               $basepath = $a->get_basepath();
                if (!is_dir($basepath."/photo"))
                        if (is_writable($basepath))
                                mkdir($basepath."/photo");
index 6434cf8e64722d72b0d84b0e1506673e019003fa..1d27d703846c6f7b56fe2ffe1dee317f57452a28 100644 (file)
@@ -44,7 +44,7 @@ function proxy_init() {
        $thumb = false;
        $size = 1024;
        $sizetype = "";
-       $basepath = App::get_basepath();
+       $basepath = $a->get_basepath();
 
        // If the cache path isn't there, try to create it
        if (!is_dir($basepath."/proxy"))