Added files - test
git-svn-id: https://svn.pioder.pl/uf-svn/uF@11 72ec579a-5ced-4fa4-82f3-afba5d98df2f
This commit is contained in:
32
quick_reply.php
Normal file
32
quick_reply.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Dynamic Script Forum
|
||||
* @file quick_reply.php
|
||||
* @version 1.0.x, 26-08-2007, 18:09
|
||||
* @copyright 2008(c) PioDer <pioder@wp.pl>
|
||||
* @link http://pioder.gim2przemysl.int.pl/dsf.html
|
||||
* @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/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()
|
||||
);
|
||||
include('./skins/'.$default_skin.'/quick_reply_body.tpl');
|
||||
?>
|
||||
Reference in New Issue
Block a user