1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/postgresql-fulltext-search] fix language key

Language key name not incompatible_database instead of version which
was misleading

PHPBB3-9730
This commit is contained in:
Dhruv Goel
2012-06-12 12:19:28 +05:30
parent ee8647d9fc
commit 8ba510a99d
2 changed files with 2 additions and 2 deletions

View File

@@ -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)