Gazelle/sections/ajax/preview.php

11 lines
247 B
PHP
Raw Normal View History

2011-03-28 14:21:28 +00:00
<?
/* AJAX Previews, simple stuff. */
2013-12-12 08:01:01 +00:00
Text::$TOC = true;
2013-05-05 08:00:31 +00:00
if (!empty($_POST['AdminComment'])) {
2013-12-12 08:01:01 +00:00
echo Text::full_format($_POST['AdminComment']);
2011-03-28 14:21:28 +00:00
} else {
$Content = $_REQUEST['body']; // Don't use URL decode.
2013-12-12 08:01:01 +00:00
echo Text::full_format($Content);
2011-03-28 14:21:28 +00:00
}
2012-10-27 08:00:09 +00:00