diff options
| -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> |
