diff options
| author | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2001-10-14 16:11:36 +0000 |
|---|---|---|
| committer | dougk_ff7 <dougk_ff7@users.sourceforge.net> | 2001-10-14 16:11:36 +0000 |
| commit | fe67a082f87bad18ba5fea101cba394ddcb11996 (patch) | |
| tree | 7581f9f0a8ef1254ca4de71942089af41d012679 /phpBB | |
| parent | ae1e381f994d31c581b080019148e6c1ba917e1d (diff) | |
| download | forums-fe67a082f87bad18ba5fea101cba394ddcb11996.tar forums-fe67a082f87bad18ba5fea101cba394ddcb11996.tar.gz forums-fe67a082f87bad18ba5fea101cba394ddcb11996.tar.bz2 forums-fe67a082f87bad18ba5fea101cba394ddcb11996.tar.xz forums-fe67a082f87bad18ba5fea101cba394ddcb11996.zip | |
Fixes that little login bug.
git-svn-id: file:///svn/phpbb/trunk@1186 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/config.php | 19 | ||||
| -rw-r--r-- | phpBB/templates/PSO/login_body.tpl | 4 | ||||
| -rw-r--r-- | phpBB/templates/subSilver/login_body.tpl | 1 |
3 files changed, 22 insertions, 2 deletions
diff --git a/phpBB/config.php b/phpBB/config.php index e69de29bb2..31fb8aca00 100644 --- a/phpBB/config.php +++ b/phpBB/config.php @@ -0,0 +1,19 @@ +<?php + +// +// phpBB 2.x auto-generated config file +// Do not change anything in this file! +// + +$dbms = "mysql"; + +$dbhost = "127.0.0.1"; +$dbname = "devphpbb2"; +$dbuser = "dougk"; +$dbpasswd = "2d8o0u7g026"; + +$table_prefix = "phpbb_"; + +define('PHPBB_INSTALLED', true); + +?>
\ No newline at end of file diff --git a/phpBB/templates/PSO/login_body.tpl b/phpBB/templates/PSO/login_body.tpl index 757f5618c0..4ad9323360 100644 --- a/phpBB/templates/PSO/login_body.tpl +++ b/phpBB/templates/PSO/login_body.tpl @@ -22,7 +22,7 @@ <td align="center"><font face="{T_FONTFACE1}" size="2" color="{T_FONTCOLOR2}">{L_AUTO_LOGIN}</font>: <input type="checkbox" name="autologin"></td> </tr> <tr> - <td align="center"><input type="hidden" name="forward_page" value="{FORWARD_PAGE}"><input type="submit" name="submit" value="{L_LOGIN}"></td> + <td align="center"><input type="hidden" name="login" value="login"><input type="hidden" name="forward_page" value="{FORWARD_PAGE}"><input type="submit" name="submit" value="{L_LOGIN}"></td> </tr> <tr> <td align="center"><font face="{T_FONTFACE1}" size="{T_FONTSIZE2}"><a href="{U_SEND_PASSWORD}">{L_SEND_PASSWORD}</a></font></td> @@ -35,4 +35,4 @@ <div align="center"><table align="center" border="0" width="60%"> <td align="right"><font face="{T_FONTFACE1}" size="{T_FONTSIZE1}"><b>{S_TIMEZONE}</b></font></td> -</table>
\ No newline at end of file +</table> diff --git a/phpBB/templates/subSilver/login_body.tpl b/phpBB/templates/subSilver/login_body.tpl index 7b2d34b755..04323543ff 100644 --- a/phpBB/templates/subSilver/login_body.tpl +++ b/phpBB/templates/subSilver/login_body.tpl @@ -36,6 +36,7 @@ <tr align="center"> <td colspan="2"> <input type="hidden" name="forward_page" value="{FORWARD_PAGE}" /> + <input type="hidden" name="login" value="login" /> <input type="submit" name="submit" class="mainoption" value="{L_LOGIN}" /> </td> </tr> |
