From: kiko%async.com.br <> Date: Tue, 3 Feb 2004 21:29:33 +0000 (+0000) Subject: Fix for bustage caused by Gerv's checkin for bug 232903; basically, we X-Git-Tag: bugzilla-2.17.7~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f4585764873c8b7254c5c41e12b50d62d765301;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/t/008filter.t b/t/008filter.t index 8b8b36d5ce..8e0ca2d043 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)\(/;