]> git.mjollnir.org Git - s9y.git/commitdiff
Fix matching "." character for comments
authorgarvinhicking <garvinhicking>
Thu, 17 Aug 2006 08:44:41 +0000 (08:44 +0000)
committergarvinhicking <garvinhicking>
Thu, 17 Aug 2006 08:44:41 +0000 (08:44 +0000)
index.php

index 67fbc5f872f3d676de4df667756c5c7fa9eb553f..061b499fb5414c0834f6d9d30b3ea4598e96f0e4 100644 (file)
--- 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;