|
|
Registered User Currently Offline
|
Posts: 5
Join Date: Jun 2005
|
Love the board. Works great.
Added some functionality to the search feature.
By design, I want anyone to be able to search the forum. This may be a feature that others would like as well.
Currently (from what I can seen - maybe I am wrong on this) guests are unable to search.
So the following snippet was added ... perhaps good to integrate into future releases:
[seo-board_options.php]
* added variable *
Code:
$guestscansearch=1 //0-no 1-yes
[search.php]
* modified line 20 *
Code:
if ($user_id == 0)
* to test guestscansearch variable *
Code:
if ($guestscansearch == 0)
-dRB
|