]> git.mxchange.org Git - friendica.git/blobdiff - mod/photo.php
Merge pull request #3121 from annando/1701-bugfix-config
[friendica.git] / mod / photo.php
index d324818b286247e6df2125b5c6fae917887276f4..6562599ca3cf0ccc5b19e997b2734fcbdd408e0d 100644 (file)
@@ -3,7 +3,7 @@
 require_once('include/security.php');
 require_once('include/Photo.php');
 
-function photo_init(&$a) {
+function photo_init(App $a) {
        global $_SERVER;
 
        $prvcachecontrol = false;
@@ -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");