diff options
Diffstat (limited to 'phpBB/includes/functions_install.php')
-rw-r--r-- | phpBB/includes/functions_install.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/functions_install.php b/phpBB/includes/functions_install.php index 31085344f8..cdd62b6d9e 100644 --- a/phpBB/includes/functions_install.php +++ b/phpBB/includes/functions_install.php @@ -492,10 +492,15 @@ function connect_check_db($error_connect, &$error, $dbms_details, $table_prefix, } $db->sql_freeresult($result); - if (version_compare($stats['NLS_RDBMS_VERSION'], '9.2', '<') && $stats['NLS_CHARACTERSET'] !== 'UTF8') + if (version_compare($stats['NLS_RDBMS_VERSION'], '9.2', '<')) { $error[] = $lang['INST_ERR_DB_NO_ORACLE']; } + + if ($stats['NLS_CHARACTERSET'] !== 'AL32UTF8') + { + $error[] = $lang['INST_ERR_DB_NO_ORACLE_NLS']; + } } break; |