1: <?php
2:
3: /**
4: * Class protector_spamcheck_overrun_message
5: */
6: class Protector_spamcheck_overrun_message extends ProtectorFilterAbstract
7: {
8: public function execute()
9: {
10: // header( 'Location: http://google.com/' ) ; // redirect somewhere
11: echo 'Your post looks like SPAM'; // write any message as you like
12: exit;
13: }
14: }
15: