forked from widop/phpbb3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmap.php
More file actions
23 lines (22 loc) · 644 Bytes
/
map.php
File metadata and controls
23 lines (22 loc) · 644 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
*
* @package phpBB SEO GYM Sitemaps
* @version $Id: map.php 112 2009-09-30 17:21:34Z dcz $
* @copyright (c) 2006 - 2009 www.phpbb-seo.com
* @license http://opensource.org/osi3.0/licenses/lgpl-license.php GNU Lesser General Public License
*
*/
define('IN_PHPBB', true);
$phpEx = substr(strrchr(__FILE__, '.'), 1);
$phpbb_root_path = './';
include($phpbb_root_path . 'common.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('gym_sitemaps/gym_common');
// Start the process
require($phpbb_root_path . 'gym_sitemaps/includes/gym_html.' . $phpEx);
$gym_html = new gym_html();
exit;
?>