diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-05-12 20:01:21 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-05-12 20:01:21 +0000 |
| commit | 7dd067bf5a532e4c30908cca24449274a4863326 (patch) | |
| tree | bdffc09ae4c96b85dd839e71243ab75b68cf2af0 /phpBB/install | |
| parent | 8a37c7572c67854533fcd6309db004570ae44f7f (diff) | |
| download | forums-7dd067bf5a532e4c30908cca24449274a4863326.tar forums-7dd067bf5a532e4c30908cca24449274a4863326.tar.gz forums-7dd067bf5a532e4c30908cca24449274a4863326.tar.bz2 forums-7dd067bf5a532e4c30908cca24449274a4863326.tar.xz forums-7dd067bf5a532e4c30908cca24449274a4863326.zip | |
Dealing with some duplicate language strings.
I'll leave the rest of the files to you Nils ;-)
git-svn-id: file:///svn/phpbb/trunk@5901 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rwxr-xr-x | phpBB/install/install_install.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 8e486ceb60..dc6ef0f423 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -299,8 +299,8 @@ class install_install extends module $passed['files'] = ($exists && $write && $passed['files']) ? true : false; - $exists = ($exists) ? '<b style="color:green">' . $lang['FILE_FOUND'] . '</b>' : '<b style="color:red">' . $lang['FILE_NOT_FOUND'] . '</b>'; - $write = ($write) ? ', <b style="color:green">' . $lang['FILE_WRITEABLE'] . '</b>' : (($exists) ? ', <b style="color:red">' . $lang['FILE_UNWRITEABLE'] . '</b>' : ''); + $exists = ($exists) ? '<b style="color:green">' . $lang['FOUND'] . '</b>' : '<b style="color:red">' . $lang['NOT_FOUND'] . '</b>'; + $write = ($write) ? ', <b style="color:green">' . $lang['WRITEABLE'] . '</b>' : (($exists) ? ', <b style="color:red">' . $lang['UNWRITEABLE'] . '</b>' : ''); $template->assign_block_vars('checks', array( 'TITLE' => $dir, @@ -334,8 +334,8 @@ class install_install extends module $write = $exists = false; } - $exists_str = ($exists) ? '<b style="color:green">' . $lang['FILE_FOUND'] . '</b>' : '<b style="color:red">' . $lang['FILE_NOT_FOUND'] . '</b>'; - $write_str = ($write) ? ', <b style="color:green">' . $lang['FILE_WRITEABLE'] . '</b>' : (($exists) ? ', <b style="color:red">' . $lang['FILE_UNWRITEABLE'] . '</b>' : ''); + $exists_str = ($exists) ? '<b style="color:green">' . $lang['FOUND'] . '</b>' : '<b style="color:red">' . $lang['NOT_FOUND'] . '</b>'; + $write_str = ($write) ? ', <b style="color:green">' . $lang['WRITEABLE'] . '</b>' : (($exists) ? ', <b style="color:red">' . $lang['UNWRITEABLE'] . '</b>' : ''); $template->assign_block_vars('checks', array( 'TITLE' => $dir, |
