diff options
author | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-12 18:40:48 +0530 |
---|---|---|
committer | Dhruv Goel <dhruv.goel92@gmail.com> | 2012-06-12 18:40:48 +0530 |
commit | e127ba17ea3259d1fa9a135b8ae5ab9136bc7712 (patch) | |
tree | 951bc54979c075347771cb11cfd1a98daa6ae4d4 /phpBB/includes/search/fulltext_mysql.php | |
parent | 1d0607cbb31865b5128a1a2b92b415386aee0788 (diff) | |
download | forums-e127ba17ea3259d1fa9a135b8ae5ab9136bc7712.tar forums-e127ba17ea3259d1fa9a135b8ae5ab9136bc7712.tar.gz forums-e127ba17ea3259d1fa9a135b8ae5ab9136bc7712.tar.bz2 forums-e127ba17ea3259d1fa9a135b8ae5ab9136bc7712.tar.xz forums-e127ba17ea3259d1fa9a135b8ae5ab9136bc7712.zip |
[ticket/10936] fix language key
Language key changes from INCOMPATIBLE_VERSION to INCOMPATIBLE_DATABASE to
make it more meaningfull.
PHPBB3-10936
Diffstat (limited to 'phpBB/includes/search/fulltext_mysql.php')
-rw-r--r-- | phpBB/includes/search/fulltext_mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/search/fulltext_mysql.php b/phpBB/includes/search/fulltext_mysql.php index 7c94038cc9..c84bfcdcb0 100644 --- a/phpBB/includes/search/fulltext_mysql.php +++ b/phpBB/includes/search/fulltext_mysql.php @@ -70,7 +70,7 @@ class phpbb_search_fulltext_mysql extends phpbb_search_base if ($db->sql_layer != 'mysql4' && $db->sql_layer != 'mysqli') { - return $user->lang['FULLTEXT_MYSQL_INCOMPATIBLE_VERSION']; + return $user->lang['FULLTEXT_MYSQL_INCOMPATIBLE_DATABASE']; } $result = $db->sql_query('SHOW TABLE STATUS LIKE \'' . POSTS_TABLE . '\''); |