The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
423B

  1. <?php
  2. require_once 'inc/functions.php';
  3. checkBan();
  4. $text = isset($_POST['text']) ? $_POST['text'] : '';
  5. if(strlen($text)>0 && !preg_match('/a href/', $text)) {
  6. file_put_contents("attentionbar.txt",htmlspecialchars($text));
  7. if(strlen($_SERVER['HTTP_REFERER'])>0) { header('Location: ' . $_SERVER['HTTP_REFERER']); }
  8. else { header('Location: /'); }
  9. } else print(file_get_contents("attentionbar.txt"));
  10. return;
  11. ?>