mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
Moved config, images vars to arrays and various other fixes
git-svn-id: file:///svn/phpbb/trunk@237 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -50,12 +50,13 @@ switch($pagetype)
|
||||
//
|
||||
if($userdata['session_logged_in'])
|
||||
{
|
||||
$admin_link = "<a href=\"admin/index.php\">Administration Panel</a>";
|
||||
$admin_link = "<a href=\"admin/index.$phpEx\">Administration Panel</a>";
|
||||
}
|
||||
$current_time = time();
|
||||
$template->assign_vars(array("PHPBB_VERSION" => "2.0-alpha",
|
||||
"CURRENT_TIME" => create_date($date_format, $current_time, $sys_timezone),
|
||||
"ADMIN_LINK" => $admin_link));
|
||||
$template->assign_vars(array(
|
||||
"PHPBB_VERSION" => "2.0-alpha",
|
||||
"CURRENT_TIME" => create_date($board_config['default_dateformat'], $current_time, $board_config['default_timezone']),
|
||||
"ADMIN_LINK" => $admin_link));
|
||||
|
||||
$template->pparse("overall_footer");
|
||||
|
||||
|
Reference in New Issue
Block a user