Reporter: Christopher X. Candreva Mon Nov 3 17:38:35 1997 I've made a small addition to wwwwais I thought you might want to add to the archive. All it does is add a PageFooter command to the config file, as a compliment to PageTitle. PageFooter only accepts a file name though, not a string. This way one can add a custom bottom to the returned search. Chris Candreva -- chris@westnet.com -- (914) 967-7816 WestNet Internet Services of Westchester http://www.westnet.com/ =================================================================== 144a145 > pagefooter[MAXSTRLEN], 426a428,430 > char line[MAXSTRLEN]; > FILE *fp; > 430a435,443 > > if (lstrstr(pagefooter, ".html")) { > if ((fp = fopen(pagefooter, "r")) != NULL) { > while (fgets(line, MAXSTRLEN, fp) != NULL) > printf("%s", line); > fclose(fp); > } > } > 1847a1861,1862 > else if (getconfvalue(line, "pagefooter", value) != NULL) > strcpy(pagefooter, value);