mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 02:46:30 +00:00
11 lines
247 B
PHP
11 lines
247 B
PHP
<?
|
|
/* AJAX Previews, simple stuff. */
|
|
Text::$TOC = 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);
|
|
}
|
|
|