mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-03-31 17:15:38 +00:00
add AppModelRequest dependency
This commit is contained in:
parent
451df36fc2
commit
00c39f49c1
1 changed files with 6 additions and 0 deletions
|
|
@ -111,6 +111,7 @@ if (isset($request['_route_']))
|
|||
require_once __DIR__ . '/../app/model/locale.php';
|
||||
require_once __DIR__ . '/../app/model/website.php';
|
||||
require_once __DIR__ . '/../app/model/session.php';
|
||||
require_once __DIR__ . '/../app/model/request.php';
|
||||
|
||||
require_once __DIR__ . '/../app/controller/page.php';
|
||||
|
||||
|
|
@ -129,6 +130,11 @@ if (isset($request['_route_']))
|
|||
),
|
||||
new AppModelSession(
|
||||
$_SERVER['REMOTE_ADDR']
|
||||
),
|
||||
new AppModelRequest(
|
||||
$_GET,
|
||||
$_POST,
|
||||
$_FILES
|
||||
)
|
||||
);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue