aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/db/migration.php
diff options
context:
space:
mode:
authorNathan Guse <nathaniel.guse@gmail.com>2013-01-08 22:07:12 -0600
committerNathan Guse <nathaniel.guse@gmail.com>2013-01-09 16:42:47 -0600
commit82efb3e446efbb8ef05c6a777e3866901abfd07a (patch)
tree52437390f467f5ac84b712787a1dde8ca87c2887 /phpBB/includes/db/migration.php
parent91a921a96bf26607879de850fca105be78eadf1d (diff)
downloadforums-82efb3e446efbb8ef05c6a777e3866901abfd07a.tar
forums-82efb3e446efbb8ef05c6a777e3866901abfd07a.tar.gz
forums-82efb3e446efbb8ef05c6a777e3866901abfd07a.tar.bz2
forums-82efb3e446efbb8ef05c6a777e3866901abfd07a.tar.xz
forums-82efb3e446efbb8ef05c6a777e3866901abfd07a.zip
[feature/migrations] Remove references as it is now 3.1 code
PHPBB3-9737
Diffstat (limited to 'phpBB/includes/db/migration.php')
-rw-r--r--phpBB/includes/db/migration.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/db/migration.php b/phpBB/includes/db/migration.php
index de9f6d07e3..c98ac8728a 100644
--- a/phpBB/includes/db/migration.php
+++ b/phpBB/includes/db/migration.php
@@ -44,10 +44,10 @@ class phpbb_db_migration
* @param string $phpbb_root_path
* @param string $php_ext
*/
- function phpbb_db_migration(&$db, &$db_tools, $table_prefix, $phpbb_root_path, $php_ext)
+ function phpbb_db_migration($db, $db_tools, $table_prefix, $phpbb_root_path, $php_ext)
{
- $this->db = &$db;
- $this->db_tools = &$db_tools;
+ $this->db = $db;
+ $this->db_tools = $db_tools;
$this->table_prefix = $table_prefix;
$this->phpbb_root_path = $phpbb_root_path;