1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

Fix various var not set warnings ... many thanks go to The Horta for pointing out and offering fixes for many of these

git-svn-id: file:///svn/phpbb/trunk@1998 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen
2002-01-28 17:33:51 +00:00
parent e46d624c6b
commit bbb06e6633
2 changed files with 6 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ else
$template->assign_vars(array(
"PHPBB_VERSION" => "2.0 CVS",
"TRANSLATION_INFO" => $lang['TRANSLATION_INFO'],
"TRANSLATION_INFO" => ( isset($lang['TRANSLATION_INFO']) ) ? $lang['TRANSLATION_INFO'] : "",
"ADMIN_LINK" => $admin_link)
);