mirror of
https://github.com/friendica/friendica
synced 2025-01-30 18:19:47 +00:00
Rename back App::load()
This commit is contained in:
parent
bb252e326f
commit
b9f5a4f745
1 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ class App
|
|||
$this->session = $this->container->create(IHandleUserSessions::class);
|
||||
$this->appHelper = $this->container->create(AppHelper::class);
|
||||
|
||||
$this->loadSetupForFrontend(
|
||||
$this->load(
|
||||
$request,
|
||||
$this->container->create(DbaDefinition::class),
|
||||
$this->container->create(ViewDefinition::class),
|
||||
|
@ -272,7 +272,7 @@ class App
|
|||
/**
|
||||
* Load the whole app instance
|
||||
*/
|
||||
private function loadSetupForFrontend(ServerRequestInterface $request, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
|
||||
private function load(ServerRequestInterface $request, DbaDefinition $dbaDefinition, ViewDefinition $viewDefinition)
|
||||
{
|
||||
if ($this->config->get('system', 'ini_max_execution_time') !== false) {
|
||||
set_time_limit((int)$this->config->get('system', 'ini_max_execution_time'));
|
||||
|
|
Loading…
Add table
Reference in a new issue