diff options
| author | David M <davidmj@users.sourceforge.net> | 2006-06-17 11:32:07 +0000 |
|---|---|---|
| committer | David M <davidmj@users.sourceforge.net> | 2006-06-17 11:32:07 +0000 |
| commit | 751a154af01ac9cacdee5309d95ea115c0cecd5a (patch) | |
| tree | fbd42a9e5662b93f0569eeda27be32714121c84e /phpBB/install/install_install.php | |
| parent | 10846d462ac9aa4790157f02e6cbf76297c29b82 (diff) | |
| download | forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.gz forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.bz2 forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.xz forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.zip | |
- SQLite handling in custom profiles
- Removed an extra ';'
- Install works with SQLite again
git-svn-id: file:///svn/phpbb/trunk@6082 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
| -rwxr-xr-x | phpBB/install/install_install.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index da85fc527a..cb45e3d634 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -391,7 +391,7 @@ class install_install extends module { if (!$this->can_load_dll($this->available_dbms[$dbms]['MODULE'])) { - $error['db'][] = $lang['INST_ERR_NO_DB'];; + $error['db'][] = $lang['INST_ERR_NO_DB']; } } @@ -547,7 +547,7 @@ class install_install extends module } // Test against the default password rules - if ($admin_pass1 != '' && strlen($admin_pass1) < 6) + if ($admin_pass1 != '' && strlen($admin_pass1) < 4) { $error[] = $lang['INST_ERR_PASSWORD_TOO_SHORT']; } |
