diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-06-03 23:56:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-06-03 23:56:45 -0400 |
commit | 7fc29119dbd953b60f1dd2e9f59473afab2a21fa (patch) | |
tree | 24797d082c715e5ef5419e5454b573f46cc80df1 /IkiWiki | |
parent | 3ba723d79ad10420666cc7e9e1fc1537c59f6be5 (diff) | |
download | ikiwiki-7fc29119dbd953b60f1dd2e9f59473afab2a21fa.tar ikiwiki-7fc29119dbd953b60f1dd2e9f59473afab2a21fa.tar.gz |
use "U" term
this seems to be the thing to use for a unique id
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm index dd44855bd..679321ce5 100644 --- a/IkiWiki/Plugin/search.pm +++ b/IkiWiki/Plugin/search.pm @@ -147,7 +147,7 @@ sub pageterm ($) { #{{{ # TODO: check if > 255 char page names overflow term # length; use sha1 if so? - return "P".$page; + return "U".$page; } #}}} my $db; |