XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
precommon_badip_redirection.php
Go to the documentation of this file.
1 <?php
2 
3 // define it as you like :-)
4 
5 define('PROTECTOR_BADIP_REDIRECTION_URI' , 'http://yahoo.com/' ) ;
6 
8 
9  function execute()
10  {
11  header( 'Location: '.PROTECTOR_BADIP_REDIRECTION_URI ) ;
12  exit ;
13  }
14 
15 }
16 
17 ?>