diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-08-05 15:49:28 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-08-05 15:49:28 +0000 |
commit | b4b901b82552e639cae00c4dc38542cf6fe2d873 (patch) | |
tree | 27a02a9b1861ef07cd22dd19e6b970a82945e490 /phpBB/install/install_install.php | |
parent | 0a007bd5d746892459201306363c38cbdec36bc2 (diff) | |
download | forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.gz forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.bz2 forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.tar.xz forums-b4b901b82552e639cae00c4dc38542cf6fe2d873.zip |
- fixed some bugs
- made imageset naming more consistent
- updated every schema to be consistent and also fixed it (every db should install fine now)
-
git-svn-id: file:///svn/phpbb/trunk@6237 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install_install.php')
-rwxr-xr-x | phpBB/install/install_install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 6e63f38b31..38317bac3f 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -1361,7 +1361,7 @@ class install_install extends module $_module->move_module_by($row, 'move_up', 4); } - + // And now for the special ones // (these are modules which appear in multiple categories and thus get added manually to some for more control) if (isset($this->module_extras[$module_class])) @@ -1871,7 +1871,7 @@ class install_install extends module 'COMMENTS' => 'remove_comments' ), 'postgres' => array( - 'LABEL' => 'PostgreSQL 7.x', + 'LABEL' => 'PostgreSQL 7.x/8.x', 'SCHEMA' => 'postgres', 'MODULE' => 'pgsql', 'DELIM' => ';', @@ -1881,7 +1881,7 @@ class install_install extends module 'LABEL' => 'SQLite', 'SCHEMA' => 'sqlite', 'MODULE' => 'sqlite', - 'DELIM' => ';;', + 'DELIM' => ';', 'COMMENTS' => 'remove_remarks' ), ); |