diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-03-21 22:43:07 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-03-21 22:43:07 +0000 |
commit | a4e51c9699c7a09bea32ad832a9818abba008801 (patch) | |
tree | 42feb7021db4bd9cb9334e65b23260d491d3b131 /phpBB/install/install.php | |
parent | 68b7397da8197d23dae07fc0e7927697cb1e3492 (diff) | |
download | forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.gz forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.bz2 forums-a4e51c9699c7a09bea32ad832a9818abba008801.tar.xz forums-a4e51c9699c7a09bea32ad832a9818abba008801.zip |
- first try to break things...
git-svn-id: file:///svn/phpbb/trunk@5108 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r-- | phpBB/install/install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php index 9532474c96..deaa04fbcc 100644 --- a/phpBB/install/install.php +++ b/phpBB/install/install.php @@ -621,7 +621,7 @@ if ($stage == 1) // Generate list of available DB's $dbms_options = ''; - foreach($available_dbms as $dbms_name => $details) + foreach ($available_dbms as $dbms_name => $details) { $selected = ($dbms_name == $dbms) ? ' selected="selected"' : ''; $dbms_options .= '<option value="' . $dbms_name . '"' . $selected .'>' . $details['LABEL'] . '</option>'; |