aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2011-06-02 23:32:12 +0200
committerAndreas Fischer <bantu@phpbb.com>2011-06-02 23:32:12 +0200
commit672c333aced13afdaead43e84bb686f60b371f94 (patch)
treef1530eb280f2b4fb3795d56804a4fa1ec1b83881 /phpBB/includes
parented95c7195f52b49a611a1e91c43e6ac815a4d005 (diff)
parentb1a4de3166f3f75fe707292f911076db53a0538d (diff)
downloadforums-672c333aced13afdaead43e84bb686f60b371f94.tar
forums-672c333aced13afdaead43e84bb686f60b371f94.tar.gz
forums-672c333aced13afdaead43e84bb686f60b371f94.tar.bz2
forums-672c333aced13afdaead43e84bb686f60b371f94.tar.xz
forums-672c333aced13afdaead43e84bb686f60b371f94.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [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 148f56b5a8..82fd03b5f3 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 710a054e5f..2287bc716e 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;
}