Fixed problem with subrequests not being intercepted. See #124.

This commit is contained in:
brectanus 2007-05-30 14:14:00 +00:00
Родитель c594c205c3
Коммит af6160b9c4
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,8 @@
?? ??? 2007 - 2.2.0-trunk
-------------------------
* Fixed problem with subrequests not being intercepted (only logged).
* Add Solaris to the list of platforms not supporting the hidden
visibility attribute.

Просмотреть файл

@ -562,6 +562,10 @@ static int hook_request_late(request_rec *r) {
/* Has this phase been completed already? */
if (msr->phase_request_body_complete) {
if (msr->was_intercepted) {
msr_log(msr, 4, "Phase REQUEST_BODY subrequest already intercepted with code %u.", msr->intercept_actionset->intercept_status);
return msr->intercept_actionset->intercept_status;
}
if (msr->txcfg->debuglog_level >= 4) {
msr_log(msr, 4, "Phase REQUEST_BODY already complete, skipping.");
}