get_basepath() uses a lot $this (which means object-referenced calls, or
non-static calls). but still it is called statically in many places. Signed-off-by: Roland Häder <roland@mxchange.org>
This commit is contained in:
parent
378cbd9027
commit
c43e9aa74e
|
@ -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 the photo is public and there is an existing photo directory store the photo there
|
||||||
if ($public and ($file != "")) {
|
if ($public and ($file != "")) {
|
||||||
// If the photo path isn't there, try to create it
|
// 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_dir($basepath."/photo"))
|
||||||
if (is_writable($basepath))
|
if (is_writable($basepath))
|
||||||
mkdir($basepath."/photo");
|
mkdir($basepath."/photo");
|
||||||
|
|
|
@ -44,7 +44,7 @@ function proxy_init() {
|
||||||
$thumb = false;
|
$thumb = false;
|
||||||
$size = 1024;
|
$size = 1024;
|
||||||
$sizetype = "";
|
$sizetype = "";
|
||||||
$basepath = App::get_basepath();
|
$basepath = $a->get_basepath();
|
||||||
|
|
||||||
// If the cache path isn't there, try to create it
|
// If the cache path isn't there, try to create it
|
||||||
if (!is_dir($basepath."/proxy"))
|
if (!is_dir($basepath."/proxy"))
|
||||||
|
|
Loading…
Reference in a new issue