diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-29 17:38:26 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-29 17:38:26 -0400 |
commit | 9d7c1d5f7d4c0490a512e482c3348bed2967d17f (patch) | |
tree | 378eaced8c41984c66be75e8e5f2fef198e96093 | |
parent | 25b01f94045eaa262587fcd18e8525eed9c18157 (diff) | |
download | ikiwiki-9d7c1d5f7d4c0490a512e482c3348bed2967d17f.tar ikiwiki-9d7c1d5f7d4c0490a512e482c3348bed2967d17f.tar.gz |
Fix ikiwiki-update-wikilist -r to actually work.
-rw-r--r-- | debian/changelog | 1 | ||||
-rwxr-xr-x | ikiwiki-update-wikilist | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index ddd0f7a28..8f659cb31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -22,6 +22,7 @@ ikiwiki (3.20110609) UNRELEASED; urgency=low * Preserve mixed case in page creation links, and when creating a page whose title is mixed case, allow selecting between the mixed case and all lower-case names. + * Fix ikiwiki-update-wikilist -r to actually work. -- Joey Hess <joeyh@debian.org> Thu, 09 Jun 2011 10:06:44 -0400 diff --git a/ikiwiki-update-wikilist b/ikiwiki-update-wikilist index a6425f011..1976f7ed1 100755 --- a/ikiwiki-update-wikilist +++ b/ikiwiki-update-wikilist @@ -30,6 +30,9 @@ while (<$list>) { $seen=1; push @lines, $_; } + else { + $changed=1; + } } else { push @lines, $_; |