diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2010-01-04 20:51:40 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2010-01-04 20:51:40 -0500 |
commit | d78e8ee45275060d70686e540c94aa5aa47d9f31 (patch) | |
tree | 0b2b5141d951d2fd73bdf2a6a34e28f78c668ec9 /IkiWiki | |
parent | 5fdceb49b174fb2ece7cef07479413059f1982c7 (diff) |
comments: Fix permalinks for comments using new conflict-free filenames.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/comments.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index 6340fc2cb..5586cca52 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -224,7 +224,7 @@ sub preprocess { $pagestate{$page}{meta}{title} = $params{subject}; } - if ($params{page} =~ m/\/(\Q$config{comments_pagename}\E\d+)$/) { + if ($params{page} =~ m/\/\Q$config{comments_pagename}\E\d+_/) { $pagestate{$page}{meta}{permalink} = urlto(IkiWiki::dirname($params{page}), undef, 1). "#".page_to_id($params{page}); } |