mirror of
https://github.com/brian8544/turtle-wow.git
synced 2024-12-27 01:44:34 +00:00
21 lines
336 B
PHP
21 lines
336 B
PHP
<?php
|
|
|
|
global $smarty;
|
|
global $conf_file;
|
|
|
|
$smarty->config_load($conf_file);
|
|
|
|
global $page;
|
|
$page = array(
|
|
'Mapper' => true,
|
|
'Book' => false,
|
|
'Title' => $smarty->get_config_vars('Maps'),
|
|
'tab' => 1,
|
|
'type' => 0,
|
|
'typeid' => 0,
|
|
'path' => '[]'
|
|
);
|
|
$smarty->assign('page', $page);
|
|
|
|
$smarty->display('maps.tpl');
|