put
blogSearch's form with the google searchbox mentioned yesterday into a file read from my templates.
<%
local (pta=html.getPageTableAddress());
if !(pta^.radioResponder.flStaticRendering) {
return(file.readwholefile(user.radio.prefs.wwwfolder+"#searchbox.txt"))};
%>
that was no good! it returns 'true' unless its rewritten to read:
<%
local (s="", pta=html.getPageTableAddress());
if !(pta^.radioResponder.flStaticRendering) {
s=file.readwholefile(user.radio.prefs.wwwfolder+"#searchbox.txt")};
return (s);
%>