<?php
							 | 
						|
								/** 
							 | 
						|
								* @package	Dynamic Script Forum 
							 | 
						|
								* @file		quick_reply.php
							 | 
						|
								* @version	1.0.x, 26-08-2007, 18:09 
							 | 
						|
								* @copyright	2008(c) PioDer <[email protected]>
							 | 
						|
								* @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');
							 | 
						|
								?>
							 |