From: Joey Hess Date: Tue, 30 Aug 2011 15:37:38 +0000 (-0400) Subject: search: Fix encoding bug in calculation of maximum term size. X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/4af7b2c14d548beaf09f100e7fc6efc39e9c73a2 search: Fix encoding bug in calculation of maximum term size. --- diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm index 8138cd67f..42d2e0d30 100644 --- a/IkiWiki/Plugin/search.pm +++ b/IkiWiki/Plugin/search.pm @@ -192,7 +192,8 @@ sub pageterm ($) { # 240 is the number used by omindex to decide when to hash an # overlong term. This does not use a compatible hash method though. - if (length $page > 240) { + eval q{use Encode}; + if (length encode_utf8($page) > 240) { eval q{use Digest::SHA}; if ($@) { debug("search: ".sprintf(gettext("need Digest::SHA to index %s"), $page)) if $@; diff --git a/debian/changelog b/debian/changelog index cd0b3a114..5295030d5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -20,6 +20,7 @@ ikiwiki (3.20110716) UNRELEASED; urgency=low * Update to jquery 1.6.2, and jquery-ui 1.8.14. * Use lockf rather than flock when taking the cgilock, for better portability. + * search: Fix encoding bug in calculation of maximum term size. -- Joey Hess Tue, 19 Jul 2011 11:22:52 -0400