diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-21 17:27:50 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-21 17:27:50 -0400 |
commit | 18d24036477223794e8319428cd7ba971129c29c (patch) | |
tree | 23995024e878a6c0df4e1572571948af89d435e2 /IkiWiki/Plugin | |
parent | 97e21ae21caa2418015ae512755e8078a0bc5ccf (diff) | |
parent | c2ffd205f3301a9fe6b5949a88da770899642589 (diff) |
Merge branch 'master' into tova
Conflicts:
debian/changelog
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/tag.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm index f0e3c223c..b0a0e53be 100644 --- a/IkiWiki/Plugin/tag.pm +++ b/IkiWiki/Plugin/tag.pm @@ -25,7 +25,8 @@ sub getopt () { #{{{ sub tagpage ($) { #{{{ my $tag=shift; - if (exists $config{tagbase} && + if ($tag !~ m{^\.?/} && + exists $config{tagbase} && defined $config{tagbase}) { $tag=$config{tagbase}."/".$tag; } |