From ade212130206257e0268bdd0a42bf86269f3ac95 Mon Sep 17 00:00:00 2001 From: Thomas Gelf Date: Thu, 27 Mar 2014 20:00:43 +0000 Subject: [PATCH] Router, once again --- library/Icinga/Application/webrouter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/Icinga/Application/webrouter.php b/library/Icinga/Application/webrouter.php index ea7dda2db..9f1acca87 100644 --- a/library/Icinga/Application/webrouter.php +++ b/library/Icinga/Application/webrouter.php @@ -24,10 +24,10 @@ if (substr($ruri, 0, strlen($remove)) !== $remove) { return false; } -$ruri = substr($ruri, strlen($remove)); +$ruri = ltrim(substr($ruri, strlen($remove)), '/'); if (strpos($ruri, '?') === false) { $params = ''; - $path = ltrim($ruri, '/'); + $path = $ruri; } else { list($path, $params) = preg_split('/\?/', $ruri, 2); }