diff options
author | Nils Adermann <naderman@naderman.de> | 2011-06-02 01:45:12 +0200 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2011-06-02 01:52:25 +0200 |
commit | ebe83769e6efff249f94e5337dcd8fd16593a290 (patch) | |
tree | d09ba915ba38ad03765d6a5a7271feb5d14245e3 /phpBB/includes | |
parent | 7da88f910399176748a92dee1a3e6577e055c1ac (diff) | |
download | forums-ebe83769e6efff249f94e5337dcd8fd16593a290.tar forums-ebe83769e6efff249f94e5337dcd8fd16593a290.tar.gz forums-ebe83769e6efff249f94e5337dcd8fd16593a290.tar.bz2 forums-ebe83769e6efff249f94e5337dcd8fd16593a290.tar.xz forums-ebe83769e6efff249f94e5337dcd8fd16593a290.zip |
[ticket/9685] Consistently name the new sql_buffer_nested_transactions function
PHPBB3-9685
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/db/dbal.php | 2 | ||||
-rw-r--r-- | phpBB/includes/db/mssqlnative.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/db/dbal.php b/phpBB/includes/db/dbal.php index d7860fc8bc..2f9619c8ea 100644 --- a/phpBB/includes/db/dbal.php +++ b/phpBB/includes/db/dbal.php @@ -246,7 +246,7 @@ class dbal * * @return bool Whether buffering is required. */ - function sql_buffer_nested_transaction() + function sql_buffer_nested_transactions() { return false; } diff --git a/phpBB/includes/db/mssqlnative.php b/phpBB/includes/db/mssqlnative.php index e057e7fe74..6810562d17 100644 --- a/phpBB/includes/db/mssqlnative.php +++ b/phpBB/includes/db/mssqlnative.php @@ -261,7 +261,7 @@ class dbal_mssqlnative extends dbal /** * {@inheritDoc} */ - function sql_buffer_nested_transaction() + function sql_buffer_nested_transactions() { return true; } |