diff options
author | kiko%async.com.br <> | 2004-02-03 22:29:33 +0100 |
---|---|---|
committer | kiko%async.com.br <> | 2004-02-03 22:29:33 +0100 |
commit | 5f4585764873c8b7254c5c41e12b50d62d765301 (patch) | |
tree | ed878f30b1eb8d944aa49b81644998659be8236a | |
parent | e4c170c4d915753c85cf5ffe86a4bbc526037dab (diff) | |
download | bugzilla-5f4585764873c8b7254c5c41e12b50d62d765301.tar.gz bugzilla-5f4585764873c8b7254c5c41e12b50d62d765301.tar.xz |
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.
-rw-r--r-- | t/008filter.t | 3 |
1 files changed, 3 insertions, 0 deletions
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)\(/; |