Fixed space in error message

This commit is contained in:
David Puglielli 2017-11-16 17:55:33 -08:00
parent b2e962100d
commit 0088d6191b

View file

@ -20,7 +20,7 @@ function getFuncSeqError()
if ( strtoupper( substr( php_uname( 's' ),0,3 ) ) === 'WIN' ) {
return "[Microsoft][ODBC Driver Manager] Function sequence error";
} else {
return "[unixODBC][Driver Manager] Function sequence error";
return "[unixODBC][Driver Manager]Function sequence error";
}
}