This might have already been fixed, but my search turned up nill.
The "go" button in the search function of members.asp shows up as a graphics button even if graphics buttons are turned off in the forum config.
lines 279-281 of members.asp are:   <td bgcolor="<% =strPopUpTableColor %>">
   <INPUT src=<%=strImageURL %>button_go.gif alt="Quick Search" type="image" value="search" id=submit1 name=submit1 border=0 width="40" height="25">
  </td> 
The should be  <%
  response.write "<td bgcolor=""" & strPopUpTableColor & """>"
  if strGfxButtons <> "0" then 
    response.write "<INPUT src=" & strImageURL & "button_go.gif alt=""Quick Search"" type=""image"" value=""search"" id=""submit1"" name=""submit1"" border=""0"" width=""40"" height=""25"">"
  else
    response.wirite "<INPUT type=""submit"" alt=""Quick Search"" value=""search"" id=""submit1"" name=""submit1"">
  end if 
  response.write "</td>"
%> 
 Nathan Bales - Romans 15:13
---------------------------------
Snitz Exchange | Mod Resource
Change topic title...
Edited by - Davio on 04 February 2002  14:34:33