From b550605bc2f7d45d8f05846ef663baba15ad7d50 Mon Sep 17 00:00:00 2001 From: "stephan.kasdorf" Date: Fri, 29 Aug 2025 14:15:16 +0200 Subject: [PATCH] Handle trailing URL segments in router Added logic to handle single trailing URL segments in the router, ensuring non-numeric segments are added to the `$_REQUEST` array if not already present. Improved URL parsing for consistent request handling. --- core/c/router.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/core/c/router.php b/core/c/router.php index 41f71c2..795752b 100755 --- a/core/c/router.php +++ b/core/c/router.php @@ -1,5 +1,7 @@