Compatibility with nette/http
-
Hi,
I am getting error while using MWP worker in connection with nette/http library.
The problem is this exception. nette/http does not allow to use integers as values in $_COOKIE. However MWP is setting this:
$_COOKIE['redirect_count'] = 10;This is located in src/MWP/EventListener/MasterRequest/SetRequestSettings.php on line 64
If I change this line to:
$_COOKIE['redirect_count'] = '10';everything works fine.
Would it be possible to make this modification?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Compatibility with nette/http’ is closed to new replies.