diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-17 07:33:23 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-17 07:33:23 +0000 |
commit | e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8 (patch) | |
tree | de7a7255de2036a010f07f69fd416abf2ee373fd | |
parent | 1cc7445017f0f5083c04121008433c04b82d6770 (diff) | |
download | forums-e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8.tar forums-e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8.tar.gz forums-e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8.tar.bz2 forums-e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8.tar.xz forums-e5bc3d88b6d5eb209cb3774367d6a1aa43b2f5d8.zip |
Change the test so that sqlite is happy a well
git-svn-id: file:///svn/phpbb/trunk@6078 89ea8834-ac86-4346-8a33-228a782c2dd0
-rwxr-xr-x | phpBB/adm/style/install_install.html | 2 | ||||
-rwxr-xr-x | phpBB/install/install_install.php | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/adm/style/install_install.html b/phpBB/adm/style/install_install.html index 69de6b2604..07de87fd31 100755 --- a/phpBB/adm/style/install_install.html +++ b/phpBB/adm/style/install_install.html @@ -20,7 +20,7 @@ <!-- ELSE --> <dl> - <dt>{checks.TITLE}:</label><!-- IF checks.S_EXPLAIN --><br /><span class="explain">{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> + <dt>{checks.TITLE}:<!-- IF checks.S_EXPLAIN --><br /><span class="explain">{checks.TITLE_EXPLAIN}</span><!-- ENDIF --></dt> <dd>{checks.RESULT}</dd> </dl> <!-- ENDIF --> diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 8fc1c3d7b5..da85fc527a 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -520,7 +520,7 @@ class install_install extends module $$var = request_var($var, ''); } - if ($dbname == '') + if ($dbms == '') { // Someone's been silly and tried calling this page direct // So we send them back to the start to do it again properly @@ -679,7 +679,7 @@ class install_install extends module $$var = request_var($var, ''); } - if ($dbname == '') + if ($dbms == '') { // Someone's been silly and tried calling this page direct // So we send them back to the start to do it again properly @@ -823,7 +823,7 @@ class install_install extends module $$var = request_var($var, ''); } - if ($dbname == '') + if ($dbms == '') { // Someone's been silly and tried calling this page direct // So we send them back to the start to do it again properly @@ -899,7 +899,7 @@ class install_install extends module $$var = request_var($var, ''); } - if ($dbname == '') + if ($dbms == '') { // Someone's been silly and tried calling this page direct // So we send them back to the start to do it again properly |