diff options
author | Joey Hess <joey@kitenet.net> | 2012-04-08 15:56:53 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-04-08 15:56:53 -0400 |
commit | a434e3ed8d40a69de09f5fa94e5ddd495c34d8b6 (patch) | |
tree | c87686fd5c455721248034dcfe0c206ea40007c9 /IkiWiki | |
parent | b92e8caa4d8f71e6a354fda23a7a99afda62bf75 (diff) | |
download | ikiwiki-a434e3ed8d40a69de09f5fa94e5ddd495c34d8b6.tar ikiwiki-a434e3ed8d40a69de09f5fa94e5ddd495c34d8b6.tar.gz |
remove unnecessary quoting
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 4bf8ae469..285013e49 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -665,7 +665,7 @@ sub commentmoderation ($$) { my $page=IkiWiki::dirname($f); my $file="$config{srcdir}/$f"; - my $filedir="$config{srcdir}"; + my $filedir=$config{srcdir}; if (! -e $file) { # old location $file="$config{wikistatedir}/comments_pending/".$f; |