diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-28 17:33:51 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2002-01-28 17:33:51 +0000 |
| commit | bbb06e66335a29bb5911bd3c39ac06f0e54f25a2 (patch) | |
| tree | 99d43c61141b6acc197451391a3b0aacf96eb06a /phpBB/includes/page_tail.php | |
| parent | e46d624c6bf84b8669196e081dff5c434fd0e25a (diff) | |
| download | forums-bbb06e66335a29bb5911bd3c39ac06f0e54f25a2.tar forums-bbb06e66335a29bb5911bd3c39ac06f0e54f25a2.tar.gz forums-bbb06e66335a29bb5911bd3c39ac06f0e54f25a2.tar.bz2 forums-bbb06e66335a29bb5911bd3c39ac06f0e54f25a2.tar.xz forums-bbb06e66335a29bb5911bd3c39ac06f0e54f25a2.zip | |
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
Diffstat (limited to 'phpBB/includes/page_tail.php')
| -rw-r--r-- | phpBB/includes/page_tail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/page_tail.php b/phpBB/includes/page_tail.php index baf16f9917..d06cfd64e2 100644 --- a/phpBB/includes/page_tail.php +++ b/phpBB/includes/page_tail.php @@ -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) ); |
