Comment 20 for bug 240519

Revision history for this message
Adam Conrad (adconrad) wrote :

The reason sybase_affected_rows didn't get aliased is because this was renamed in the mssql extension to mssql_rows_affected, so the s/mssql/sybase/ aliases didn't catch that.

To get old sybase_ct users happy, you need to add an alias like so:

PHP_FALIAS(sybase_affected_rows, mssql_rows_affected, NULL)