BioTorrents.de’s version of Gazelle
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.

preview.php 258B

1234567891011
  1. <?php
  2. /* AJAX previews, simple stuff */
  3. Text::$TOC = true;
  4. if (!empty($_POST['AdminComment'])) {
  5. echo Text::full_format($_POST['AdminComment']);
  6. } else {
  7. $Content = $_REQUEST['body']; // Don't use URL decode
  8. echo Text::full_format($Content);
  9. }