Avoid undefined class variables

This commit is contained in:
Michael 2017-10-11 14:52:08 +00:00
commit 225eea2ca6
10 changed files with 25 additions and 9 deletions

View file

@ -11,7 +11,9 @@ use Friendica\App;
*/
require_once("boot.php");
$a = new App(dirname(__DIR__));
if (empty($a)) {
$a = new App(dirname(__DIR__));
}
@include(".htconfig.php");
$lang = get_browser_language();

View file

@ -5,7 +5,10 @@ use Friendica\Core\Config;
require_once("boot.php");
$a = new App(dirname(__DIR__));
if (empty($a)) {
$a = new App(dirname(__DIR__));
}
@include(".htconfig.php");
$lang = get_browser_language();

View file

@ -13,7 +13,9 @@ ini_set('log_errors', '0');
include 'boot.php';
$a = new App(dirname(__DIR__));
if (empty($a)) {
$a = new App(dirname(__DIR__));
}
if (x($a->config, 'php_path')) {
$phpath = $a->config['php_path'];