[ticket/9685] Consistently name the new sql_buffer_nested_transactions function

PHPBB3-9685
This commit is contained in:
Nils Adermann 2011-06-02 01:45:12 +02:00
parent 7da88f9103
commit ebe83769e6
2 changed files with 2 additions and 2 deletions

View file

@ -246,7 +246,7 @@ class dbal
* *
* @return bool Whether buffering is required. * @return bool Whether buffering is required.
*/ */
function sql_buffer_nested_transaction() function sql_buffer_nested_transactions()
{ {
return false; return false;
} }

View file

@ -261,7 +261,7 @@ class dbal_mssqlnative extends dbal
/** /**
* {@inheritDoc} * {@inheritDoc}
*/ */
function sql_buffer_nested_transaction() function sql_buffer_nested_transactions()
{ {
return true; return true;
} }