diff options
author | Andreas Fischer <bantu@phpbb.com> | 2009-11-15 22:30:07 +0000 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2009-11-15 22:30:07 +0000 |
commit | f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3 (patch) | |
tree | eaf8d4c0b5cceb8295bb863d4eb295a0081ccea5 /phpBB | |
parent | e4d1addc2c74e84a737c5ca91f3f3379fb648c33 (diff) | |
download | forums-f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3.tar forums-f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3.tar.gz forums-f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3.tar.bz2 forums-f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3.tar.xz forums-f59a9221e9db58761fb9f792c7e5d1ce3c0b52b3.zip |
Fix Bug #53965, Regression introduced in r9768 - Hardcode language for the time being.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@10271 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/install_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_update.php b/phpBB/install/install_update.php index 6adebc7a64..9f5a428029 100644 --- a/phpBB/install/install_update.php +++ b/phpBB/install/install_update.php @@ -927,7 +927,7 @@ class install_update extends module { if (function_exists('phpbb_is_writable') && !phpbb_is_writable($phpbb_root_path . 'store/')) { - trigger_error(sprintf($user->lang['DIRECTORY_NOT_WRITABLE'], $phpbb_root_path . 'store/'), E_USER_ERROR); + trigger_error(sprintf('The directory ā%sā is not writable.', $phpbb_root_path . 'store/'), E_USER_ERROR); } if ($use_method == '.zip') |