summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-26 21:14:07 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-26 21:14:07 -0400
commit82f0facb620e59594aaf318c2eaf676c7788f1e6 (patch)
tree5d65038818dee722d70cc8cb30986f3452633232 /IkiWiki/Plugin
parent42ac4ec00959bd6162076af799023545b698bed9 (diff)
fixups
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/search.pm3
-rw-r--r--IkiWiki/Plugin/typography.pm1
2 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm
index c45e59c8e..cb12d9500 100644
--- a/IkiWiki/Plugin/search.pm
+++ b/IkiWiki/Plugin/search.pm
@@ -19,6 +19,7 @@ sub getsetup () { #{{{
return
omega_cgi => {
type => "string",
+ example => "/usr/lib/cgi-bin/omega/omega",
description => "path to the omega cgi program",
safe => 0, # external program
rebuild => 0,
@@ -32,7 +33,7 @@ sub checkconfig () { #{{{
}
}
- if (! exists $config{omega_cgi}) {
+ if (! defined $config{omega_cgi}) {
$config{omega_cgi}="/usr/lib/cgi-bin/omega/omega";
}
} #}}}
diff --git a/IkiWiki/Plugin/typography.pm b/IkiWiki/Plugin/typography.pm
index 5ba14084b..6229e6c33 100644
--- a/IkiWiki/Plugin/typography.pm
+++ b/IkiWiki/Plugin/typography.pm
@@ -27,7 +27,6 @@ sub getsetup () { #{{{
typographyattributes => {
type => "string",
example => "3",
- example => "tag",
description => "Text::Typography attributes value",
safe => 1,
rebuild => 1,