diff options
| author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-09 19:51:18 -0600 |
|---|---|---|
| committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-02-09 19:51:18 -0600 |
| commit | ec9328e943c9fb9bddb468d426bb10266c86965d (patch) | |
| tree | 3075896b2bdfaeccc1f8bd07608938cd5c9177fb /phpBB/includes | |
| parent | 5705c3d377d097ef8bf7b99863eabc08fe3276e7 (diff) | |
| parent | fa33eae556c248ef6b2d41d9c9203b29e23dfb3a (diff) | |
| download | forums-ec9328e943c9fb9bddb468d426bb10266c86965d.tar forums-ec9328e943c9fb9bddb468d426bb10266c86965d.tar.gz forums-ec9328e943c9fb9bddb468d426bb10266c86965d.tar.bz2 forums-ec9328e943c9fb9bddb468d426bb10266c86965d.tar.xz forums-ec9328e943c9fb9bddb468d426bb10266c86965d.zip | |
Merge branch 'develop' of https://github.com/phpbb/phpbb3 into feature/migrations-extensions
# Via Igor Wiedler (1) and Nathaniel Guse (1)
* 'develop' of https://github.com/phpbb/phpbb3:
[ticket/11350] Do not pass $db by reference; typehint phpbb_db_driver
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/db/db_tools.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/db_tools.php b/phpBB/includes/db/db_tools.php index e8c26fa502..983cdc18ea 100644 --- a/phpBB/includes/db/db_tools.php +++ b/phpBB/includes/db/db_tools.php @@ -303,7 +303,7 @@ class phpbb_db_tools * @param phpbb_db_driver $db Database connection * @param bool $return_statements True if only statements should be returned and no SQL being executed */ - function phpbb_db_tools(&$db, $return_statements = false) + function phpbb_db_tools(phpbb_db_driver $db, $return_statements = false) { $this->db = $db; $this->return_statements = $return_statements; |
