aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/ddate.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-09-08 19:40:23 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-09-08 19:40:23 -0400
commit2b53de66a06dd6449cf81f105bc6cdcf44ebac0d (patch)
tree2a2aac3f5adb5de012c6bcc1f5f59395f0410408 /IkiWiki/Plugin/ddate.pm
parent0e654c1ea0b7009f497a7fc6f44263ee79860dd8 (diff)
downloadikiwiki-2b53de66a06dd6449cf81f105bc6cdcf44ebac0d.tar
ikiwiki-2b53de66a06dd6449cf81f105bc6cdcf44ebac0d.tar.gz
ddate: Stop clobbering timeformat when not enabled.
Diffstat (limited to 'IkiWiki/Plugin/ddate.pm')
-rw-r--r--IkiWiki/Plugin/ddate.pm11
1 files changed, 3 insertions, 8 deletions
diff --git a/IkiWiki/Plugin/ddate.pm b/IkiWiki/Plugin/ddate.pm
index 2ec122833..6c36de0a6 100644
--- a/IkiWiki/Plugin/ddate.pm
+++ b/IkiWiki/Plugin/ddate.pm
@@ -7,7 +7,6 @@ no warnings;
sub import { #{{{
hook(type => "getsetup", id => "ddate", call => \&getsetup);
- hook(type => "checkconfig", id => "ddate", call => \&checkconfig);
} # }}}
sub getsetup { #{{{
@@ -18,18 +17,14 @@ sub getsetup { #{{{
},
} #}}}
-sub checkconfig () { #{{{
- if (! defined $config{timeformat} ||
- $config{timeformat} eq '%c') {
- $config{timeformat}='on %A, the %e of %B, %Y. %N%nCelebrate %H';
- }
-} #}}}
-
sub IkiWiki::displaytime ($;$) { #{{{
my $time=shift;
my $format=shift;
if (! defined $format) {
$format=$config{timeformat};
+ if ($format eq '%c') {
+ $format='on %A, the %e of %B, %Y. %N%nCelebrate %H';
+ }
}
eval q{
use DateTime;