Skip to content

Commit

Permalink
Remove wrong database version information from installer
Browse files Browse the repository at this point in the history
Fixes #22157
  • Loading branch information
atrol committed Jan 16, 2017
1 parent e84d0da commit 2392ef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/install.php
Expand Up @@ -484,7 +484,7 @@ function print_test( $p_test_description, $p_result, $p_hard_fail = true, $p_mes
case 'mssql':
case 'mssqlnative':
if( version_compare( $t_version_info['version'], DB_MIN_VERSION_MSSQL, '<' ) ) {
$t_error = 'SQL Server 2005 (' . DB_MIN_VERSION_MSSQL . ') or later is required for installation.';
$t_error = 'SQL Server (' . DB_MIN_VERSION_MSSQL . ') or later is required for installation.';
}
break;
case 'pgsql':
Expand Down

0 comments on commit 2392ef9

Please sign in to comment.