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