Gazelle/sections/ajax/preview.php
2013-07-04 08:00:56 +00:00

13 lines
328 B
PHP

<?
/* AJAX Previews, simple stuff. */
include(SERVER_ROOT.'/classes/text.class.php'); // Text formatting class
$Text = new TEXT(true);
if (!empty($_POST['AdminComment'])) {
echo $Text->full_format($_POST['AdminComment']);
} else {
$Content = $_REQUEST['body']; // Don't use URL decode.
echo $Text->full_format($Content);
}