diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-06-18 20:35:01 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-05-09 18:40:15 +0200 |
commit | 139eb17bb729763ab670fb239c77db02e29920f6 (patch) | |
tree | ce514d6f36d0855c9be0d5a2ed35aa14258ba6ce /phpBB/phpbb/db/driver/factory.php | |
parent | b4d4336ef4043a5b3381a9e70d3bbc6bc6732d07 (diff) | |
download | forums-139eb17bb729763ab670fb239c77db02e29920f6.tar forums-139eb17bb729763ab670fb239c77db02e29920f6.tar.gz forums-139eb17bb729763ab670fb239c77db02e29920f6.tar.bz2 forums-139eb17bb729763ab670fb239c77db02e29920f6.tar.xz forums-139eb17bb729763ab670fb239c77db02e29920f6.zip |
[ticket/12624] Add debug.load_time parameter
PHPBB3-12624
Diffstat (limited to 'phpBB/phpbb/db/driver/factory.php')
-rw-r--r-- | phpBB/phpbb/db/driver/factory.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/driver/factory.php b/phpBB/phpbb/db/driver/factory.php index 122cbcc10d..bb6e7a2682 100644 --- a/phpBB/phpbb/db/driver/factory.php +++ b/phpBB/phpbb/db/driver/factory.php @@ -68,6 +68,14 @@ class factory implements driver_interface /** * {@inheritdoc} */ + public function set_debug_load_time($value) + { + $this->get_driver()->set_debug_load_time($value); + } + + /** + * {@inheritdoc} + */ public function set_debug_sql_explain($value) { $this->get_driver()->set_debug_sql_explain($value); |