jmyeom

board.php popup report

May 25th, 2011
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. in board.php
  2.  
  3. find: around line 392
  4.  
  5.  
  6. foreach ($_POST['post'] as $val) {
  7.  
  8. replace with
  9.  
  10.  
  11. foreach ($_POST['post'] as $val) {
  12. $posting_class->CheckCaptcha();
  13.  
  14.  
  15.  
  16.  
  17. find: around line 449
  18.  
  19. do_redirect(KU_BOARDSPATH . '/' . $board_class->board['name'] . '/');
  20.  
  21. replace with
  22.  
  23.  
  24.  
  25. if(isset($_POST['reportpost'])){
  26. echo "<font color='#FF0000'>Report submitted! This window will close in 5 seconds...</font></h3><script language='JavaScript'>setTimeout('self.close()', 5000);</script><br><a href='javascript:self.close()'>Close</a>";
  27. }else{
  28. do_redirect(KU_BOARDSPATH . '/' . $board_class->board['name'] . '/');
  29. }
Advertisement
Add Comment
Please, Sign In to add comment