Gazelle/sections/ajax/preview.php
2011-03-28 15:21:28 +01:00

14 lines
324 B
PHP

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