Added URL registry attributes.

This commit is contained in:
flash 2023-09-10 00:04:53 +00:00
parent c009c1691f
commit 48b767edd4
15 changed files with 262 additions and 213 deletions
public

View file

@ -125,6 +125,8 @@ CSRF::init(
($authInfo->isLoggedIn() ? $sessionInfo->getToken() : $_SERVER['REMOTE_ADDR'])
);
// order for these two currently matters i think: it shouldn't.
$router = $msz->createRouting();
$msz->startTemplating();
$mszRequestPath = $request->getPath();
@ -144,5 +146,4 @@ if(!empty($mszLegacyPath) && str_starts_with($mszLegacyPath, $mszLegacyPathPrefi
}
}
$msz->startRouter();
$msz->dispatchRouter($request);
$router->dispatch($request);