From 7fe72f6894c527b1ff86a93a1195b10528cac2d3 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 2 Jun 2013 22:14:35 +0200 Subject: [PATCH] Let the /list route refer to the users' VPS list specifically. --- frontend/rewrite.php | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/rewrite.php b/frontend/rewrite.php index 177d286..15f7c6f 100644 --- a/frontend/rewrite.php +++ b/frontend/rewrite.php @@ -59,6 +59,7 @@ try $router->routes = array( 0 => array( '^/?$' => "modules/client/vps/list.php", + '^/list?$' => "modules/client/vps/list.php", '^/account/?$' => "modules/client/account/index.php", '^/login/?$' => "modules/shared/login.php", '^/logout/?$' => "modules/shared/logout.php",