mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 01:54:26 +02:00
Avoid undefined class variables
This commit is contained in:
parent
a29b7e7153
commit
225eea2ca6
10 changed files with 25 additions and 9 deletions
|
@ -23,7 +23,9 @@ function poller_run($argv, $argc){
|
|||
|
||||
$poller_up_start = microtime(true);
|
||||
|
||||
$a = new App(dirname(__DIR__));
|
||||
if (empty($a)) {
|
||||
$a = new App(dirname(__DIR__));
|
||||
}
|
||||
|
||||
require_once ".htconfig.php";
|
||||
require_once "include/dba.php";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue