1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 03:34:04 +02:00

[feature/migrations] Remove references as it is now 3.1 code

PHPBB3-9737
This commit is contained in:
Nathan Guse
2013-01-08 22:07:12 -06:00
parent 91a921a96b
commit 82efb3e446
45 changed files with 1179 additions and 280 deletions

View File

@@ -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;