From 5f4585764873c8b7254c5c41e12b50d62d765301 Mon Sep 17 00:00:00 2001 From: "kiko%async.com.br" <> Date: Tue, 3 Feb 2004 21:29:33 +0000 Subject: Fix for bustage caused by Gerv's checkin for bug 232903; basically, we need to exempt Hook.process() calls from the filter checks. I'm assuming Gerv has stamped this fix, and I'm just checking it in to keep things green -- back me out later if this was wrong. --- t/008filter.t | 3 +++ 1 file changed, 3 insertions(+) (limited to 't') diff --git a/t/008filter.t b/t/008filter.t index 8b8b36d5c..8e0ca2d04 100644 --- a/t/008filter.t +++ b/t/008filter.t @@ -182,6 +182,9 @@ sub directive_ok { # Params return 1 if $directive =~ /^Param\(/; + + # Hooks + return 1 if $directive =~ /^Hook.process\(/; # Other functions guaranteed to return OK output return 1 if $directive =~ /^(time2str|GetBugLink|url)\(/; -- cgit v1.2.3-24-g4f1b