A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
 
 
 
 
 
 

32 lines
765 B

<?php
/**
* @package uForum
* @file quick_reply.php
* @version $Id$
* @copyright 2009(c) PioDer <pioder@wp.pl>
* @link http://pioder.gim2przemysl.int.pl/
* @license GNU GPL v3
**/
if ( !defined('IN_uF') )
{
die('Hacking attempt');
}
foreach ($_POST as $name => $value)
{
if ($forum_config['use_censorlist'])
{
$_POST[$name] = Secure::UseCensorlist($value);
}
}
include('./lngs/'.$default_lang.'/quick_reply.php');
include('./includes/classes/class_posting.php');
$skin = array(
'ltitle'=>$lng['title'],
'lmsg'=>$lng['message'],
'lsave'=>$lng['save'],
'url'=>'posting.php?mode=rpost&amp;id='.$_GET['t'],
'lreset'=>$lng['reset'],
'smiles'=>Post::SmilesShow()
);
include('./skins/'.$default_skin.'/quick_reply_body.tpl');
?>