From bf8bea4967c50ba61c6bd897d3611fccdac24bee Mon Sep 17 00:00:00 2001 From: David M Date: Mon, 19 Feb 2007 16:40:49 +0000 Subject: [PATCH] PHP4 lives! git-svn-id: file:///svn/phpbb/trunk@7014 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/install/install_convert.php | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php index ffbb4e4ef7..0986ef42f9 100644 --- a/phpBB/install/install_convert.php +++ b/phpBB/install/install_convert.php @@ -432,14 +432,7 @@ class install_convert extends module } else { - if (version_compare(PHP_VERSION, '5.0.0-dev', '<')) - { - $src_db = &$db; - } - else - { - $src_db = $db; - } + $src_db = $db; $same_db = true; } @@ -668,14 +661,7 @@ class install_convert extends module } else { - if (version_compare(PHP_VERSION, '5.0.0-dev', '<')) - { - $src_db = &$db; - } - else - { - $src_db = $db; - } + $src_db = $db; $same_db = true; }