diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-09-29 13:33:23 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-09-29 13:33:23 -0400 |
commit | 1f929e7f6404dc260ebd7818c83ca87e52da6c41 (patch) | |
tree | feb8ecef6f97c1985c72fffda0a6281305ec7db0 | |
parent | 936110ddb3acf67ac950a960b5c39bfc860a17ea (diff) |
typo
-rw-r--r-- | IkiWiki/Plugin/parentlinks.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/parentlinks.pm b/IkiWiki/Plugin/parentlinks.pm index b01d76f80..e678a057d 100644 --- a/IkiWiki/Plugin/parentlinks.pm +++ b/IkiWiki/Plugin/parentlinks.pm @@ -57,7 +57,7 @@ sub pagetemplate (@) { if ($template->query(name => "parentlinks") || $template->query(name => "has_parentlinks")) { - my @links=[parentlinks($page)]; + my @links=parentlinks($page); $template->param(parentlinks => \@links); $template->param(has_parentlinks => (@links > 0)); } |