From b9b46a8b454b2ad34ff1a15b0cfd7bd9eb969cb6 Mon Sep 17 00:00:00 2001 From: David M Date: Wed, 9 Jan 2008 00:21:29 +0000 Subject: - phpBB now uses a less ancient version of Oracle git-svn-id: file:///svn/phpbb/trunk@8317 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_install.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'phpBB/includes/functions_install.php') 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; -- cgit v1.2.1