]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/fortune.pm
* Add postformtext parameter to inline.
[ikiwiki.git] / IkiWiki / Plugin / fortune.pm
index 8e96bdbbd1e442be73b45586f3fd276b2ea9b0e2..3bab134bed8e8d4bf152dee04bbff1bdb42a9727 100644 (file)
@@ -2,20 +2,20 @@
 # Include a fortune in a page
 package IkiWiki::Plugin::fortune;
 
 # Include a fortune in a page
 package IkiWiki::Plugin::fortune;
 
+use IkiWiki;
 use warnings;
 use strict;
 
 sub import { #{{{
 use warnings;
 use strict;
 
 sub import { #{{{
-       IkiWiki::hook(type => "preprocess", id => "fortune",
-               call => \&preprocess);
+       hook(type => "preprocess", id => "fortune", call => \&preprocess);
 } # }}}
 
 sub preprocess (@) { #{{{
        $ENV{PATH}="$ENV{PATH}:/usr/games:/usr/local/games";
 } # }}}
 
 sub preprocess (@) { #{{{
        $ENV{PATH}="$ENV{PATH}:/usr/games:/usr/local/games";
-       my $f = `fortune`;
+       my $f = `fortune 2>/dev/null`;
 
        if ($?) {
 
        if ($?) {
-               return "[[fortune failed]]";
+               return "[[".gettext("fortune failed")."]]";
        }
        else {
                return "<pre>$f</pre>\n";
        }
        else {
                return "<pre>$f</pre>\n";