Kod: Tümünü seç
<?php
///////////////////
//www.boyalicam.net//
//by ///////
///////////////////
define('IN_PHPBB', true);
$phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
include($phpbb_root_path . 'includes/bbcode.'.$phpEx);
//
// Start session management
//
$userdata = session_pagestart($user_ip, PAGE_VIEWMEMBERS);
init_userprefs($userdata);
//
// End session management
//
//
//sadece uyeler icin baslangıcı
//
if ( $userdata['user_level'] != ADMIN )
{
redirect(append_sid("login.$phpEx?redirect=oyun.$phpEx", true));
}
//
//sadece uyeler icin sonu
//
include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/oyun.' . $phpEx);
$page_title = $lang['siz_birseyler_yazin'];
include('includes/page_header.'.$phpEx);
$template->set_filenames(array(
'body' => 'oyun.tpl')
);
$template->pparse('body');
include('includes/page_tail.'.$phpEx);
?>