- <?php
- /**
- * @package uForum
- * @file quick_reply.php
- * @version $Id$
- * @copyright 2007-2010 (c) PioDer <pioder@wp.pl>
- * @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&id='.$_GET['t'],
- 'lreset'=>$lng['reset'],
- 'smiles'=>Post::SmilesShow()
- );
- require('./skins/'.$default_skin.'/quick_reply_body.tpl');
- ?>
|