Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Add a missing semicolon to the previous checkin. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
5b61ad3a4c7c9f2961fe9d4e3b91695b |
| User & Date: | drh 2008-05-29 14:38:13.000 |
Context
|
2008-06-02
| ||
| 09:54 | Fix an assert in the rebuild command. ... (check-in: cfb1341ae3 user: drh tags: trunk) | |
|
2008-05-29
| ||
| 14:38 | Add a missing semicolon to the previous checkin. ... (check-in: 5b61ad3a4c user: drh tags: trunk) | |
| 14:37 | When redirecting to /xfer, make sure the PATH_INFO actually exists. Update the cgi_replace_parameter() routine to make sure the parameter being replaced already exists. ... (check-in: e5b7292620 user: drh tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
425 426 427 428 429 430 431 |
** Replace a parameter with a new value.
*/
void cgi_replace_parameter(const char *zName, const char *zValue){
int i;
for(i=0; i<nUsedQP; i++){
if( strcmp(aParamQP[i].zName,zName)==0 ){
aParamQP[i].zValue = zValue;
| | | 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 |
** Replace a parameter with a new value.
*/
void cgi_replace_parameter(const char *zName, const char *zValue){
int i;
for(i=0; i<nUsedQP; i++){
if( strcmp(aParamQP[i].zName,zName)==0 ){
aParamQP[i].zValue = zValue;
return;
}
}
cgi_set_parameter_nocopy(zName, zValue);
}
/*
** Add a query parameter. The zName portion is fixed but a copy
|
| ︙ | ︙ |