Skip to content

Commit 5a1b058

Browse files
committedAug 10, 2012
Fix #14574: MSSQL server 2005 as minimum version
1 parent 4c4e658 commit 5a1b058

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
 

‎admin/install.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,13 @@ function InsertData( $p_table, $p_data ) {
379379
$t_error = 'MySQL 4.1.0 or later is required for installation.';
380380
}
381381
break;
382-
case 'pgsql':
383382
case 'mssql':
384383
case 'mssqlnative':
384+
if( version_compare( $t_version_info['version'], '9.0.0', '<' ) ) {
385+
$t_error = 'SQL Server 2005 or later is required for installation.';
386+
}
387+
break;
388+
case 'pgsql':
385389
case 'db2':
386390
default:
387391
break;

‎docbook/Admin_Guide/en-US/Installation.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@
260260
</row>
261261
<row>
262262
<entry>MS SQL Server</entry>
263-
<entry></entry>
264-
<entry></entry>
263+
<entry>2005</entry>
264+
<entry>2005 or above</entry>
265265
<entry>PHP extension: mssql or sqlsrv</entry>
266266
</row>
267267
<row>

0 commit comments

Comments
 (0)
Please sign in to comment.