Replies: 1
My error logs kept warning about this line
$request_path = $request_uri['path'];
So I’ve replaced it with
$request_path = isset($request_uri['path']) ? $request_uri['path'] : '';
Might worth check it out.
Cheers
Replies: 1
My error logs kept warning about this line
$request_path = $request_uri['path'];
So I’ve replaced it with
$request_path = isset($request_uri['path']) ? $request_uri['path'] : '';
Might worth check it out.
Cheers