From 09dbbaf24573b235b8976339062138ec00b94520 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 25 Nov 2009 06:49:26 -0500 Subject: [PATCH 1/1] fix hook names --- IkiWiki/Plugin/date.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/date.pm b/IkiWiki/Plugin/date.pm index 8f2aa73d6..652e6df0a 100644 --- a/IkiWiki/Plugin/date.pm +++ b/IkiWiki/Plugin/date.pm @@ -6,8 +6,8 @@ use strict; use IkiWiki 3.00; sub import { - hook(type => "getsetup", id => "meta", call => \&getsetup); - hook(type => "preprocess", id => "meta", call => \&preprocess); + hook(type => "getsetup", id => "date", call => \&getsetup); + hook(type => "preprocess", id => "date", call => \&preprocess); } sub getsetup () { -- 2.45.0