You are here

function pressflow_transaction_db_next_id in Transaction 5

Legacy compatibility wrapper for transaction_db_next_id().

Deprecated

2008-08-12

See also

transaction_db_next_id

1 call to pressflow_transaction_db_next_id()
TransactionLegacyAPITest::testTransactionDBNextID in tests/transaction_legacy.test
Verify the operation of pressflow_transaction_db_next_id().

File

./transaction.module, line 277
Provides a database transaction system for use with InnoDB tables in MySQL.

Code

function pressflow_transaction_db_next_id($name) {
  return transaction_db_next_id($name);
}