Differences From Artifact [c849e06b05]:
- File src/url.c — part of check-in [daeb10f65f] at 2010-12-16 14:46:48 on branch trunk — Use relative URLs for hyperlinks whereever possible, so that Fossil can work better behind a reverse proxy. (user: drh size: 10830)
To Artifact [28548c078f]:
- File src/url.c — part of check-in [31c52c7b3e] at 2010-12-23 02:22:20 on branch trunk — Add new function fossil_strcmp() that works like strcmp() except that it handles NULL arguments correctly. Use fossil_strcmp() in place of strcmp() in many places in the code. (user: drh size: 10837)
| ︙ | |||
139 140 141 142 143 144 145 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 | - + |
zValue = &g.urlPath[i];
while( g.urlPath[i] && g.urlPath[i]!='&' ){ i++; }
}
if( g.urlPath[i] ){
g.urlPath[i] = 0;
i++;
}
|
| ︙ |