View Single Post
  #2  
Old 12-09-2005, 12:49 AM
BradleyT BradleyT is offline
Senior Member
 
Join Date: Dec 2003
Location: Milwaukee
Posts: 512
Default Re: Can anyone help me with a phpbb board?

It's because your log in form is nested inside your search form (and your search form is never closed).

Load the page and view the source and do a find on "form". You'll see the first form is

<form name="search_block" method="post" action="search.php" onsubmit="return checkSearch()">

and the next form is
<form method="post" action="login.php">

however you haven't closed the first form with a </form>

So you need to put </form> right above

<input type="hidden" name="search_fields" value="all" />
<input type="hidden" name="show_results" value="topics" />


Edit - don't waste your 3,000th post to thank me [img]/images/graemlins/smile.gif[/img]
Reply With Quote