MSSQL functions in db_mssql.php, PHP 5.3

Hi,
trying to integrate the gantt chart with existing MS SQL backend. Need to use db_mssql.php, but all references in it are to old mssql_xxxx functions which are no longer supported since PHP 5.3, and are being replaced with sqlsrv_xxxx. Any chance to see an updated version of the Gantt code any time soon where this issue has been addressed?

Just use db_sqlsrv.php instead of db_mssql.php

[code]require(“connector/grid_connector.php”);
require(“connector/db_sqlsrv.php”);

$conn = sqlsrv_connect( $serverName, $connectionInfo);

$gridConn = new GanttConnector($conn,“SQLSrv”);[/code]