diff options
Diffstat (limited to 'ext/mssql/php_mssql.c')
-rw-r--r-- | ext/mssql/php_mssql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mssql/php_mssql.c b/ext/mssql/php_mssql.c index 8c0b13d2fd..bf5c77e555 100644 --- a/ext/mssql/php_mssql.c +++ b/ext/mssql/php_mssql.c @@ -231,9 +231,9 @@ static void php_mssql_init_globals(zend_mssql_globals *mssql_globals) MS_SQL_G(num_persistent) = 0; if (cfg_get_long("mssql.compatability_mode", &compatability_mode) == SUCCESS) { if (compatability_mode) { - MS_SQL_G(get_column_content) = php_mssql_get_column_content_with_type; - } else { MS_SQL_G(get_column_content) = php_mssql_get_column_content_without_type; + } else { + MS_SQL_G(get_column_content) = php_mssql_get_column_content_with_type; } } } |