aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2009-07-17 10:11:10 +0000
committerAndreas Fischer <bantu@phpbb.com>2009-07-17 10:11:10 +0000
commit955939ee1b8f95948c37628ee996a6ac07c305a2 (patch)
treef346d09d1ddf2e794574b73501304541c7e92f9b /phpBB/includes
parentdce2a9b039184a8c5dddf4825cf0b6b3081bc3fd (diff)
downloadforums-955939ee1b8f95948c37628ee996a6ac07c305a2.tar
forums-955939ee1b8f95948c37628ee996a6ac07c305a2.tar.gz
forums-955939ee1b8f95948c37628ee996a6ac07c305a2.tar.bz2
forums-955939ee1b8f95948c37628ee996a6ac07c305a2.tar.xz
forums-955939ee1b8f95948c37628ee996a6ac07c305a2.zip
Fix bug #47495 - Move hardcoded language string to language file.
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9765 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/acp/acp_database.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_database.php b/phpBB/includes/acp/acp_database.php
index 1182e224cf..575137ea2d 100644
--- a/phpBB/includes/acp/acp_database.php
+++ b/phpBB/includes/acp/acp_database.php
@@ -548,7 +548,9 @@ class base_extractor
if (!$this->fp)
{
- trigger_error('Unable to write temporary file to storage folder', E_USER_ERROR);
+ global $user;
+
+ trigger_error($user->lang['FILE_WRITE_FAIL'], E_USER_ERROR);
}
}
}