Oppaitime'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 250B

12345678910
  1. <?
  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. }