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.
# 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)\(/;