diff options
Diffstat (limited to 'web/html/index.php')
-rw-r--r-- | web/html/index.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/html/index.php b/web/html/index.php index 7c4eb475..e6f3771b 100644 --- a/web/html/index.php +++ b/web/html/index.php @@ -48,6 +48,12 @@ if (isset($tokens[1]) && '/' . $tokens[1] == get_pkg_route()) { } include get_route('/' . $tokens[1]); +} elseif (isset($tokens[1]) && '/' . $tokens[1] == get_user_route()) { + if (isset($tokens[2])) { + $_REQUEST['U'] = $tokens[2]; + $_REQUEST['Action'] = "AccountInfo"; + } + include get_route('/' . $tokens[1]); } elseif (get_route($path) !== NULL) { include get_route($path); } else { |