Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Default value for the "s" query parameter in /search is now "d". |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | branch-3.21 |
Files: | files | file ages | folders |
SHA3-256: |
6182e9ea4240f3e99d505019769e67ec |
User & Date: | drh 2017-11-23 21:43:24.445 |
Context
2018-01-13
| ||
20:39 | Fix typo in the how-to-corrupt document. (Cherrypick from trunk) (Leaf check-in: 97e70fb787 user: drh tags: branch-3.21) | |
2017-11-23
| ||
21:43 | Default value for the "s" query parameter in /search is now "d". (check-in: 6182e9ea42 user: drh tags: branch-3.21) | |
2017-11-09
| ||
21:01 | Fix documentation typos reported on the mailing list by Philip Newton. (check-in: 8283dbcef9 user: drh tags: branch-3.21) | |
Changes
Changes to search/search.tcl.
︙ | ︙ | |||
400 401 402 403 404 405 406 407 408 409 410 411 412 413 | } return $ret } proc main {} { global A cgi_parse_args # If "env=1" is specified, dump the environment variables instead # of running any search. if {[info exists ::A(env)]} { return [cgi_env_dump] } # If "admin=1" is specified, jump to the admin screen. | > | 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 | } return $ret } proc main {} { global A set A(s) d cgi_parse_args # If "env=1" is specified, dump the environment variables instead # of running any search. if {[info exists ::A(env)]} { return [cgi_env_dump] } # If "admin=1" is specified, jump to the admin screen. |
︙ | ︙ |