Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e05334c

Browse files
committedAug 10, 2012
Fix #14574: MSSQL server 2005 as minimum version
1 parent 938ce31 commit e05334c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

Diff for: ‎admin/install.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,13 @@ function InsertData( $p_table, $p_data ) {
375375
$t_error = 'MySQL 4.1.0 or later is required for installation.';
376376
}
377377
break;
378-
case 'pgsql':
379378
case 'mssql':
380379
case 'mssqlnative':
380+
if( version_compare( $t_version_info['version'], '9.0.0', '<' ) ) {
381+
$t_error = 'SQL Server 2005 or later is required for installation.';
382+
}
383+
break;
384+
case 'pgsql':
381385
case 'db2':
382386
default:
383387
break;

Diff for: ‎docbook/administration_guide/en/installation.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@
249249
</row>
250250
<row>
251251
<entry>MS SQL Server</entry>
252-
<entry></entry>
253-
<entry></entry>
252+
<entry>2005</entry>
253+
<entry>2005 or above</entry>
254254
<entry>PHP extension: mssql or sqlsrv</entry>
255255
</row>
256256
<row>

0 commit comments

Comments
 (0)
Please sign in to comment.