Avoid undefined class variables
This commit is contained in:
parent
a29b7e7153
commit
225eea2ca6
5
boot.php
5
boot.php
|
@ -510,6 +510,11 @@ function startup() {
|
||||||
*/
|
*/
|
||||||
function get_app() {
|
function get_app() {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
|
if (empty($a)) {
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
}
|
||||||
|
|
||||||
return $a;
|
return $a;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -49,7 +49,7 @@ require_once("boot.php");
|
||||||
|
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (is_null($a)) {
|
if (empty($a)) {
|
||||||
$a = new App(dirname(__DIR__));
|
$a = new App(dirname(__DIR__));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ require_once('boot.php');
|
||||||
function cli_startup() {
|
function cli_startup() {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (is_null($a)) {
|
if (empty($a)) {
|
||||||
$a = new App(dirname(__DIR__));
|
$a = new App(dirname(__DIR__));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1760,7 +1760,7 @@ function db_definition() {
|
||||||
function dbstructure_run(&$argv, &$argc) {
|
function dbstructure_run(&$argv, &$argc) {
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (is_null($a)) {
|
if (empty($a)) {
|
||||||
$a = new App(dirname(__DIR__));
|
$a = new App(dirname(__DIR__));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,9 @@ function poller_run($argv, $argc){
|
||||||
|
|
||||||
$poller_up_start = microtime(true);
|
$poller_up_start = microtime(true);
|
||||||
|
|
||||||
$a = new App(dirname(__DIR__));
|
if (empty($a)) {
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
}
|
||||||
|
|
||||||
require_once ".htconfig.php";
|
require_once ".htconfig.php";
|
||||||
require_once "include/dba.php";
|
require_once "include/dba.php";
|
||||||
|
|
|
@ -9,7 +9,7 @@ require_once("include/threads.php");
|
||||||
function shadowupdate_run(&$argv, &$argc){
|
function shadowupdate_run(&$argv, &$argc){
|
||||||
global $a;
|
global $a;
|
||||||
|
|
||||||
if (is_null($a)) {
|
if (empty($a)) {
|
||||||
$a = new App(dirname(__DIR__));
|
$a = new App(dirname(__DIR__));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,9 @@ use Friendica\Core\Config;
|
||||||
require_once 'boot.php';
|
require_once 'boot.php';
|
||||||
require_once 'object/BaseObject.php';
|
require_once 'object/BaseObject.php';
|
||||||
|
|
||||||
$a = new App(__DIR__);
|
if (empty($a)) {
|
||||||
|
$a = new App(__DIR__);
|
||||||
|
}
|
||||||
BaseObject::set_app($a);
|
BaseObject::set_app($a);
|
||||||
|
|
||||||
// We assume that the index.php is called by a frontend process
|
// We assume that the index.php is called by a frontend process
|
||||||
|
|
|
@ -11,7 +11,9 @@ use Friendica\App;
|
||||||
*/
|
*/
|
||||||
require_once("boot.php");
|
require_once("boot.php");
|
||||||
|
|
||||||
$a = new App(dirname(__DIR__));
|
if (empty($a)) {
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
}
|
||||||
@include(".htconfig.php");
|
@include(".htconfig.php");
|
||||||
|
|
||||||
$lang = get_browser_language();
|
$lang = get_browser_language();
|
||||||
|
|
|
@ -5,7 +5,10 @@ use Friendica\Core\Config;
|
||||||
|
|
||||||
require_once("boot.php");
|
require_once("boot.php");
|
||||||
|
|
||||||
$a = new App(dirname(__DIR__));
|
if (empty($a)) {
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
}
|
||||||
|
|
||||||
@include(".htconfig.php");
|
@include(".htconfig.php");
|
||||||
|
|
||||||
$lang = get_browser_language();
|
$lang = get_browser_language();
|
||||||
|
|
|
@ -13,7 +13,9 @@ ini_set('log_errors', '0');
|
||||||
|
|
||||||
include 'boot.php';
|
include 'boot.php';
|
||||||
|
|
||||||
$a = new App(dirname(__DIR__));
|
if (empty($a)) {
|
||||||
|
$a = new App(dirname(__DIR__));
|
||||||
|
}
|
||||||
|
|
||||||
if (x($a->config, 'php_path')) {
|
if (x($a->config, 'php_path')) {
|
||||||
$phpath = $a->config['php_path'];
|
$phpath = $a->config['php_path'];
|
||||||
|
|
Loading…
Reference in a new issue