diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 07:16:50 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-07-18 07:25:46 +0200 |
commit | 0608bcae1253d5663289d67c0f31c80f3b203793 (patch) | |
tree | 0b895bcc3282d093b3f6d3631b25f3e7fe379337 | |
parent | f2301ca922cd5088b7889a508f1ff9518f2f3a73 (diff) |
routing.inc.php: Add missing "/account" route
Minor oversight when adding the routing back end in commit
eb22bcc7548d1b1025a3832aa4555792729d11b0.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
-rw-r--r-- | web/lib/routing.inc.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/lib/routing.inc.php b/web/lib/routing.inc.php index bbcb9e2..5cffe81 100644 --- a/web/lib/routing.inc.php +++ b/web/lib/routing.inc.php @@ -5,6 +5,7 @@ $ROUTES = array( '/index.php' => 'home.php', '/packages' => 'packages.php', '/register' => 'account.php', + '/account' => 'account.php', '/accounts' => 'account.php', '/login' => 'login.php', '/logout' => 'logout.php', |