aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-06-02 23:30:09 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-06-02 23:30:09 +0200
commitb1a4de3166f3f75fe707292f911076db53a0538d (patch)
tree6251b068fbc70ec6f6a7eebbec0eac00d46f7c8e /phpBB/includes
parent2159e4f28584ad795515e0c6c509f32f634e698b (diff)
parentf0287f7e57919619e7b8085a7e7071975e18da93 (diff)
downloadforums-b1a4de3166f3f75fe707292f911076db53a0538d.tar
forums-b1a4de3166f3f75fe707292f911076db53a0538d.tar.gz
forums-b1a4de3166f3f75fe707292f911076db53a0538d.tar.bz2
forums-b1a4de3166f3f75fe707292f911076db53a0538d.tar.xz
forums-b1a4de3166f3f75fe707292f911076db53a0538d.zip
Merge remote-tracking branch 'naderman/ticket/9685' into develop-olympus
* naderman/ticket/9685: [ticket/9685] Test for databases that are able to nest transactions [ticket/9685] Consistently name the new sql_buffer_nested_transactions function
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/db/dbal.php2
-rw-r--r--phpBB/includes/db/mssqlnative.php2
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;
}