From eb3c39406cfc7d7440b638a7932b155e27437663 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Thu, 17 Aug 2006 08:44:41 +0000 Subject: [PATCH] Fix matching "." character for comments --- index.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 67fbc5f8..061b499f 100644 --- a/index.php +++ b/index.php @@ -466,11 +466,12 @@ if (preg_match(PAT_ARCHIVES, $uri, $matches) || isset($serendipity['GET']['range exit; } else if (preg_match(PAT_COMMENTS, $uri, $matches)) { $serendipity['view'] = 'comments'; - $_args = $serendipity['uriArguments']; + $_args = serendipity_getUriArguments($uri, true); // Need to also match "." character $timedesc = array(); /* Attempt to locate hidden variables within the URI */ $search = array(); + print_r($_args); foreach ($_args as $k => $v){ if ($v == PATH_COMMENTS) { continue;