Closed (fixed)
Project:
Purge
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Mar 2013 at 23:39 UTC
Updated:
30 Apr 2013 at 19:20 UTC
Jump to comment: Most recent file
This is the only instance of the text 'url' in the module, so it certainly looks like a mistake.
Based on the comment, I suspect that $purge_request_result['url'] should be $purge_request_result['proxy_url'].
// Collect all proxy hosts that are blocking the url requests
case 405:
$purge_error_log[] = $purge_request_result['purge_url'] . ' on ' . $purge_request_result['proxy_url'] . ' Forbidden';
$purge_blocking[] = parse_url($purge_request_result['url'], PHP_URL_HOST);
break;
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | purge-blocking_url-1953780.patch | 639 bytes | jweowu |
Comments
Comment #1
jweowu commentedAfter checking the subsequent usage of the
$purge_blockingarray, this change definitely looks correct to me, so: patched.Comment #2
SqyD commentedThanks for the fix and patch. Commited to 7.x-1.x and 7.x-2.x branches.