i had made my own custom style and the only problem on my board was that when i put a search engine on my header template, it gave my members a message saying something about security token
Code:
<td class="alt1" valign="top">
<form action="$vboptions[bburl]/search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="s" value="" />
<input type="text" name="query" size="15" onfocus="this.value=''" value="Search..." />
<input type="image" valign="middle" src="$vboptions[bburl]/images/misc/go.gif" style="vertical-align: middle;"/>
</form> <a href="$vboptions[bburl]/search.php" accesskey="4" rel="nofollow">Options</a><br>
and this is how it looked
but when i looked at other templates i saw that they had the security token line in the search.
Code:
<td class="alt1" valign="top">
<form action="$vboptions[bburl]/search.php" method="post">
<input type="hidden" name="do" value="process" />
<input type="hidden" name="showposts" value="0" />
<input type="hidden" name="quicksearch" value="1" />
<input type="hidden" name="s" value="" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="text" name="query" size="15" onfocus="this.value=''" value="Search..." />
<input type="image" valign="middle" src="$vboptions[bburl]/images/misc/go.gif" style="vertical-align: middle;"/>
</form> <a href="$vboptions[bburl]/search.php" accesskey="4" rel="nofollow">Options</a><br>
the bolded line is the extra line i put and it started to work
I hope this helps