mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
11 lines
214 B
PHP
11 lines
214 B
PHP
<?
|
|
/* AJAX Previews, simple stuff. */
|
|
|
|
include(SERVER_ROOT.'/classes/text.class.php'); // Text formatting class
|
|
$Text = new TEXT;
|
|
|
|
if (!empty($_POST['message'])) {
|
|
echo $Text->full_format($_POST['message']);
|
|
}
|
|
?>
|