diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-11-16 10:33:51 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-11-16 10:33:51 +0000 |
commit | 7bf1e08a35d22472c02f94dfb2f831d401f02b1e (patch) | |
tree | 3141329f3c102632bf887eff80e480be9b26a363 | |
parent | 46a07c94ba95d2a883e794742a0f8b1ef3f20714 (diff) | |
download | forums-7bf1e08a35d22472c02f94dfb2f831d401f02b1e.tar forums-7bf1e08a35d22472c02f94dfb2f831d401f02b1e.tar.gz forums-7bf1e08a35d22472c02f94dfb2f831d401f02b1e.tar.bz2 forums-7bf1e08a35d22472c02f94dfb2f831d401f02b1e.tar.xz forums-7bf1e08a35d22472c02f94dfb2f831d401f02b1e.zip |
merge r10271 (late-late fix. :) But good someone at least noticed)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_6@10272 89ea8834-ac86-4346-8a33-228a782c2dd0
-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') |