From 38e08367d2f7dbf1127c8ac7912e9a0532d5f366 Mon Sep 17 00:00:00 2001 From: Meik Sievertsen Date: Wed, 16 May 2007 14:45:13 +0000 Subject: label changes, language fixes... git-svn-id: file:///svn/phpbb/trunk@7608 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/index.php | 4 ++-- phpBB/install/install_convert.php | 2 ++ phpBB/install/install_update.php | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) (limited to 'phpBB/install') diff --git a/phpBB/install/index.php b/phpBB/install/index.php index fcec4be254..293522bfa6 100755 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -658,8 +658,8 @@ class module $tpl_type_cond = explode('_', $tpl_type[1]); $type_no = ($tpl_type_cond[0] == 'disabled' || $tpl_type_cond[0] == 'enabled') ? false : true; - $tpl_no = ' ' . (($type_no) ? $lang['NO'] : $lang['DISABLED']); - $tpl_yes = ' ' . (($type_no) ? $lang['YES'] : $lang['ENABLED']); + $tpl_no = ''; + $tpl_yes = ''; $tpl = ($tpl_type_cond[0] == 'yes' || $tpl_type_cond[0] == 'enabled') ? $tpl_yes . '  ' . $tpl_no : $tpl_no . '  ' . $tpl_yes; break; diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index 91c96134d0..c0129e3c29 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -1554,7 +1554,9 @@ class install_convert extends module if ($final_jump == 1) { $db->sql_return_on_error(true); + update_topics_posted(); + $template->assign_block_vars('checks', array( 'TITLE' => $user->lang['UPDATE_TOPICS_POSTED'], 'RESULT' => $user->lang['DONE'], diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index b306ab4930..cd24444505 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -457,7 +457,7 @@ class install_update extends module $radio_buttons = ''; foreach ($methods as $method) { - $radio_buttons .= ' ' . $method . ' '; + $radio_buttons .= ''; } $template->assign_vars(array( -- cgit v1.2.1