Minor bug in the default header template [message #40829] |
Wed, 16 April 2008 09:15 |
keithieopia
Messages: 2 Registered: April 2008
Karma: 0
|
Junior Member |
|
|
One of the lines in the header file added a slash that is unneeded due to the forum root almost always having a trailing slash. The bug prevents the open search plugin from being discovered and actually is present on the fudforum main site, see the html code for yourselves:
<link rel="search" type="application/opensearchdescription+xml" title="FUDforum Search" href="http://fudforum.org/forum//open_search.php" />
To fix it simply go into the default header and remove the extra slash, you'll need to find the code near the top that looks like this:
<link rel="search" type="application/opensearchdescription+xml" title="{GVAR: FORUM_TITLE} Search" href="{FULL_ROOT}/open_search.php" />
{VAR: RSS}
change it to this:
<link rel="search" type="application/opensearchdescription+xml" title="{GVAR: FORUM_TITLE} Search" href="{FULL_ROOT}open_search.php" />
{VAR: RSS}
This should be a quick fix in the next release of fudforum, keep up the good work!
[Updated on: Wed, 16 April 2008 09:29] Report message to a moderator
|
|
|
|
|
|