A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

32 lines
767 B

<?php
/**
* @package uForum
* @file quick_reply.php
* @version $Id$
* @copyright 2007-2010 (c) PioDer <[email protected]>
* @link http://www.pioder.pl/
* @license see LICENSE.txt
**/
if ( !defined('IN_uF') )
{
die('Hacking attempt');
}
foreach ($_POST as $name => $value)
{
if ($forum_config['use_censorlist'])
{
$_POST[$name] = Secure::UseCensorlist($value);
}
}
require('./lngs/'.$default_lang.'/quick_reply.php');
require('./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()
);
require('./skins/'.$default_skin.'/quick_reply_body.tpl');
?>