You are here

function pressflow_transaction_update in Transaction 5

Legacy compatibility wrapper for transaction_update().

Deprecated

2008-08-12

See also

transaction_update

4 calls to pressflow_transaction_update()
TransactionLegacyAPITest::testTransactionCommit in tests/transaction_legacy.test
Verify that the commit behaves correctly.
TransactionLegacyAPITest::testTransactionRollBack in tests/transaction_legacy.test
Verify that rollbacks behave correctly.
TransactionLegacyAPITest::testTransactionUpdateExisting in tests/transaction_legacy.test
Verify the behavior of pressflow_transaction_update() for existing rows.
TransactionLegacyAPITest::testTransactionUpdateNew in tests/transaction_legacy.test
Verify the behavior of pressflow_transaction_update() for new rows.

File

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

Code

function pressflow_transaction_update($table, $key_field, $fields) {
  return transaction_update($table, $key_field, $fields);
}