Skip to content
Snippets Groups Projects
nastenka_sync.php 495 B
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);

// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup();

page_header('Synchronizace s Nástěnkou');

$template->set_filenames(array(
    'body' => 'nastenka_sync.html',
));
$template->assign_vars(array(
    'SESSION_ID'      => $_SID,
));

page_footer();
?>