Advertisement
johnburn

Untitled

Apr 21st, 2011
338
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function check_footer(){
  2.    $l='D5H1z';
  3.    $f=dirname(__FILE__).'/footer.php';
  4.    $fd=fopen($f,'r');
  5.    $c=fread($fd,filesize($f));
  6.    fclose($fd);
  7.    if(strpos($c,$l)==0){
  8.      echo 'This theme is released under creative commons licence, all links in the footer should remain intact';
  9.      die;
  10.    }
  11. }
  12. check_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement