Sujet: GeSHi highlight by daris

GeSHi highlight by daris
PunBB Link Topic

GeSHi highlight v 1.0.5

GeSHi highlight v 1.0.5

00

2

Re: GeSHi highlight by daris

<?php
/**
* Adds a new post to the specified topic or a new topic to the specified forum.
*
* @copyright (C) 2008-2009 PunBB, partially based on code (C) 2008-2009 FluxBB.org
* @license http://www.gnu.org/licenses/gpl.html GPL version 2 or higher
* @package PunBB
*/

 
define('FORUM_SKIP_CSRF_CONFIRM', 1);
 
if (!defined('FORUM_ROOT'))
    define('FORUM_ROOT', './');
require FORUM_ROOT.'include/common.php';
 
($hook = get_hook('po_start')) ? eval($hook) : null;
 
if ($forum_user['g_read_board'] == '0')
    message($lang_common['No view']);
 
// Load the post.php language file
require FORUM_ROOT.'lang/'.$forum_user['language'].'/post.php';
00