Differences From Artifact [e7b8f5c327]:
- File src/search.c — part of check-in [e88211628b] at 2023-07-13 12:13:44 on branch trunk — Reconcile a test in the FTS search with its original intent in [196dfedf7fc]; reported in [forum:fa13ae06d|forum post fa13ae06d]. (user: danield size: 81432)
To Artifact [b00e57e3b0]:
- File src/search.c — part of check-in [40266bf9b2] at 2023-07-16 20:47:43 on branch verify-options-cgi — Add calls to cgi_check_for_malice() on many more web pages. Log all 418 responses to the error log. (user: drh size: 81458) [more...]
| ︙ | |||
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 | 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 | + |
** f -> forum
** all -> everything
*/
void search_page(void){
const int isSearch = P("s")!=0;
login_check_credentials();
style_header("Search%s", isSearch ? " Results" : "");
cgi_check_for_malice();
search_screen(SRCH_ALL, 1);
style_finish_page();
}
/*
** This is a helper function for search_stext(). Writing into pOut
|
| ︙ |