diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-10-05 13:40:35 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-10-05 13:40:35 -0400 |
commit | 89b65695e778699742bcf93b0ab0304fd53e30ca (patch) | |
tree | ba582b5ad7104a1f5716a096f687d2859f6206db | |
parent | 36c605cadace789d14354a1c835457f5f23ee1c2 (diff) |
typos
-rw-r--r-- | IkiWiki/Render.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index cf0c3fe08..324ef24fa 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -490,7 +490,7 @@ sub refresh () { next if $@ || ! defined $sub; my @candidates; - if ($depends_simple{$p}{$d} & $IkiWiki::DEPEND_CONTENT) { + if ($depends{$p}{$d} & $IkiWiki::DEPEND_CONTENT) { @candidates=@changed; } elsif ($depends{$p}{$d} & $IkiWiki::DEPEND_PRESENCE) { @@ -500,7 +500,7 @@ sub refresh () { # if the page explicitly depends # on such files if ($d =~ /internal\(/) { - if ($depends_simple{$p}{$d} & $IkiWiki::DEPEND_CONTENT) { + if ($depends{$p}{$d} & $IkiWiki::DEPEND_CONTENT) { push @candidates, @internal, @internal_change; } elsif ($depends{$p}{$d} & $IkiWiki::DEPEND_PRESENCE) { |