1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-06 16:56:44 +02:00

Include a link to the post by default when issuing a warning

git-svn-id: file:///svn/phpbb/trunk@6203 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames
2006-07-23 20:59:08 +00:00
parent 5e7f9e1a0d
commit 4680dfce39
5 changed files with 8 additions and 4 deletions

View File

@@ -43,7 +43,7 @@ class install_main extends module
function main($mode, $sub)
{
global $lang, $template;
global $lang, $template, $language;
switch ($sub)
{
@@ -70,7 +70,7 @@ class install_main extends module
'TITLE' => $title,
'BODY' => $body,
'S_LANG_SELECT' => '<select name="language">' . $this->p_master->inst_language_select() . '</select>',
'S_LANG_SELECT' => '<select name="language">' . $this->p_master->inst_language_select($language) . '</select>',
));
}
}