mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Bugfixing index.php
This commit is contained in:
parent
256e845c5d
commit
218e41a818
2 changed files with 4 additions and 4 deletions
|
@ -12,6 +12,6 @@ if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
||||||
|
|
||||||
require __DIR__ . '/vendor/autoload.php';
|
require __DIR__ . '/vendor/autoload.php';
|
||||||
|
|
||||||
$a = Factory\DependencyFactory::setUp('index', __DIR__, true);
|
$a = Factory\DependencyFactory::setUp('index', __DIR__, false);
|
||||||
|
|
||||||
$a->runFrontend();
|
$a->runFrontend();
|
||||||
|
|
|
@ -214,18 +214,18 @@ class App
|
||||||
*/
|
*/
|
||||||
public function __construct(Configuration $config, LoggerInterface $logger, Profiler $profiler, $isBackend = true)
|
public function __construct(Configuration $config, LoggerInterface $logger, Profiler $profiler, $isBackend = true)
|
||||||
{
|
{
|
||||||
|
BaseObject::setApp($this);
|
||||||
|
|
||||||
$this->logger = $logger;
|
$this->logger = $logger;
|
||||||
$this->config = $config;
|
$this->config = $config;
|
||||||
$this->profiler = $profiler;
|
$this->profiler = $profiler;
|
||||||
$this->basePath = $this->config->get('system', 'basepath');
|
$this->basePath = $this->config->get('system', 'basepath');
|
||||||
|
|
||||||
if (!Core\System::isDirectoryUsable($this->basePath, false)) {
|
if (!Core\System::isDirectoryUsable($this->basePath, false)) {
|
||||||
throw new Exception('Basepath ' . $this->basePath . ' isn\'t usable.');
|
throw new Exception('Basepath \'' . $this->basePath . '\' isn\'t usable.');
|
||||||
}
|
}
|
||||||
$this->basePath = rtrim($this->basePath, DIRECTORY_SEPARATOR);
|
$this->basePath = rtrim($this->basePath, DIRECTORY_SEPARATOR);
|
||||||
|
|
||||||
BaseObject::setApp($this);
|
|
||||||
|
|
||||||
$this->checkBackend($isBackend);
|
$this->checkBackend($isBackend);
|
||||||
$this->checkFriendicaApp();
|
$this->checkFriendicaApp();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue