Skip to content
Snippets Groups Projects
Commit 233ef80f authored by Regis Houssin's avatar Regis Houssin
Browse files

Fix: affichage de la version de MSSQL

parent b07e12da
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,9 @@ class DoliDb
*/
function getVersion()
{
return '?';
$resql=$this->query("SELECT @@VERSION");
$version=$this->fetch_array($resql);
return $version['computed'];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment