diff options
| author | Nils Adermann <naderman@naderman.de> | 2006-08-06 17:25:29 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2006-08-06 17:25:29 +0000 |
| commit | 8b079894f3e528c9ffe652f8f3a041599d8cbdc0 (patch) | |
| tree | 04efd5c2cf97e16a3540b9ff5c09a1944cf4b963 /phpBB/install | |
| parent | 4af44652aced7c601cdfeff93dc03e6672e8b2c3 (diff) | |
| download | forums-8b079894f3e528c9ffe652f8f3a041599d8cbdc0.tar forums-8b079894f3e528c9ffe652f8f3a041599d8cbdc0.tar.gz forums-8b079894f3e528c9ffe652f8f3a041599d8cbdc0.tar.bz2 forums-8b079894f3e528c9ffe652f8f3a041599d8cbdc0.tar.xz forums-8b079894f3e528c9ffe652f8f3a041599d8cbdc0.zip | |
- finally making the age calculation work [Bug #3582]
- replacing all occurances of L_NONE with a more specific string [Bug #3494]
- a few corrections to html id attributes in the installer
- using correct permission in mcp_report [Bug #2471]
- allow deleting the avatar, when no upload method is enabled and hide the delete button if no avatar is set
git-svn-id: file:///svn/phpbb/trunk@6241 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install')
| -rwxr-xr-x | phpBB/install/index.php | 2 | ||||
| -rwxr-xr-x | phpBB/install/install_install.php | 2 | ||||
| -rwxr-xr-x | phpBB/install/install_main.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index a75c94295d..9a542dc2df 100755 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -624,7 +624,7 @@ class module case 'select': eval('$s_options = ' . str_replace('{VALUE}', $value, $options) . ';'); - $tpl = '<select name="' . $name . '">' . $s_options . '</select>'; + $tpl = '<select id="' . $name . '" name="' . $name . '">' . $s_options . '</select>'; break; case 'custom': diff --git a/phpBB/install/install_install.php b/phpBB/install/install_install.php index 4151857d54..f64bddceee 100755 --- a/phpBB/install/install_install.php +++ b/phpBB/install/install_install.php @@ -54,7 +54,7 @@ class install_install extends module 'TITLE' => $lang['INSTALL_INTRO'], 'BODY' => $lang['INSTALL_INTRO_BODY'], 'L_SUBMIT' => $lang['NEXT'], - 'S_LANG_SELECT' => '<select name="language">' . $this->p_master->inst_language_select($language) . '</select>', + 'S_LANG_SELECT' => '<select id="language" name="language">' . $this->p_master->inst_language_select($language) . '</select>', 'U_ACTION' => $this->p_master->module_url . "?mode=$mode&sub=requirements&language=$language", )); diff --git a/phpBB/install/install_main.php b/phpBB/install/install_main.php index 3b69a67cd7..cc8367f01b 100755 --- a/phpBB/install/install_main.php +++ b/phpBB/install/install_main.php @@ -70,7 +70,7 @@ class install_main extends module 'TITLE' => $title, 'BODY' => $body, - 'S_LANG_SELECT' => '<select name="language">' . $this->p_master->inst_language_select($language) . '</select>', + 'S_LANG_SELECT' => '<select id="language" name="language">' . $this->p_master->inst_language_select($language) . '</select>', )); } } |
