Commit 5f458576 authored by kiko%async.com.br's avatar kiko%async.com.br

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.
parent e4c170c4
......@@ -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)\(/;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment