From 1b2b2b76004baac0cc9cbc7b285b2abfc65362f5 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 2 Jun 2013 22:15:06 +0200 Subject: [PATCH] Fix typo in /list route --- frontend/rewrite.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/rewrite.php b/frontend/rewrite.php index 15f7c6f..07ededd 100644 --- a/frontend/rewrite.php +++ b/frontend/rewrite.php @@ -59,7 +59,7 @@ try $router->routes = array( 0 => array( '^/?$' => "modules/client/vps/list.php", - '^/list?$' => "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",