aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-06-12 12:19:28 +0530
committerDhruv Goel <dhruv.goel92@gmail.com>2012-07-05 21:17:19 +0530
commit8ba510a99df3b26333367347a7c2c22664ae400f (patch)
tree58af209e9501b865902b73a116f608a7f3ddaad2 /phpBB/includes
parentee8647d9fcab52002c98f4dc38e5c9376af2da38 (diff)
downloadforums-8ba510a99df3b26333367347a7c2c22664ae400f.tar
forums-8ba510a99df3b26333367347a7c2c22664ae400f.tar.gz
forums-8ba510a99df3b26333367347a7c2c22664ae400f.tar.bz2
forums-8ba510a99df3b26333367347a7c2c22664ae400f.tar.xz
forums-8ba510a99df3b26333367347a7c2c22664ae400f.zip
[feature/postgresql-fulltext-search] fix language key
Language key name not incompatible_database instead of version which was misleading PHPBB3-9730
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/search/fulltext_postgres.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_postgres.php b/phpBB/includes/search/fulltext_postgres.php
index b33def9462..1595a38916 100644
--- a/phpBB/includes/search/fulltext_postgres.php
+++ b/phpBB/includes/search/fulltext_postgres.php
@@ -68,7 +68,7 @@ class phpbb_search_fulltext_postgres extends phpbb_search_base
if ($db->sql_layer != 'postgres')
{
- return $user->lang['FULLTEXT_POSTGRES_INCOMPATIBLE_VERSION'];
+ return $user->lang['FULLTEXT_POSTGRES_INCOMPATIBLE_DATABASE'];
}
if (!$this->tsearch_usable)