From 2255ba3f8c520a735caa5ba2e7cfe5f03c34ee88 Mon Sep 17 00:00:00 2001 From: Andrey Kutejko Date: Sun, 24 Aug 2014 19:06:57 +0300 Subject: [PATCH] merge matched parts of url into request object --- ipf/router.php | 1 + 1 file changed, 1 insertion(+) diff --git a/ipf/router.php b/ipf/router.php index 70bfb2b..f644271 100644 --- a/ipf/router.php +++ b/ipf/router.php @@ -80,6 +80,7 @@ class IPF_Router $match = array(); if ($route->matcher()->match($req->query, $match)) { $func = $route->func; + $req->params = $match; break; } } -- 2.49.0