diff options
| author | Geo Xalkis <gx23100@gmail.com> | 2023-05-27 21:09:00 +0300 |
|---|---|---|
| committer | Geo Xalkis <gx23100@gmail.com> | 2023-05-27 21:09:00 +0300 |
| commit | dfd5af8e07550b0715b157fa5c14f24e4be527fa (patch) | |
| tree | 7cbf4664ded9817684fdca92ecac2419456b498e /public/app | |
| parent | d1338cbb59d0752155f17d94b0b9b073df95183f (diff) | |
| download | gyraf1gov-dfd5af8e07550b0715b157fa5c14f24e4be527fa.tar.gz gyraf1gov-dfd5af8e07550b0715b157fa5c14f24e4be527fa.tar.bz2 gyraf1gov-dfd5af8e07550b0715b157fa5c14f24e4be527fa.zip | |
hotfix invitation route for md5
Diffstat (limited to 'public/app')
| -rw-r--r-- | public/app/routes/frontend.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/app/routes/frontend.php b/public/app/routes/frontend.php index adfe936..48d5da3 100644 --- a/public/app/routes/frontend.php +++ b/public/app/routes/frontend.php @@ -19,7 +19,7 @@ Route::add('/', function() { Render::view('user/login'); }); // request invitation (for account activation) // --- -- -- - - - -Route::add('/invitation/([0-9]*)', function($id) { +Route::add('/invitation/([0-9a-f]*)', function($id) { if ($id == "" || $id == "0") { Render::view('error/404'); } else { Auth::invitation($id); |
