joshdick / miniProxy

🚨⚠️ UNMAINTAINED! ⚠️🚨 A simple PHP web proxy.
http://joshdick.github.io/miniProxy
GNU General Public License v3.0
860 stars 544 forks source link

Fixed bug during check of removed headers. #123

Closed NazzarenoMarziale closed 5 years ago

NazzarenoMarziale commented 5 years ago

The function checks if inside keys of array exist "origin", instead removeKey function return an array that contains the removed elements. I inserted strtolower function to insert in to array the removed elements in order to not search elements with upper case characters.

joshdick commented 5 years ago

@NazzarenoMarziale Thanks for finding this bug! I slightly tweaked your fix in 4fba7e5 to preserve the key case in the array returned by removeKeys in case removeKeys needs to keep removeKeys more generic for future use.