Eliminate PHP warning
-
Hello.
Trying to fix the php 8 warning.
File powered-cache/ includes/functions.php line 227(PHP Warning: Undefined array key “path”):
$sub_dir = $url_info['host'] . $url_info['path'];
Replace:
$sub_dir = $url_info['host'] . ( isset($url_info['path']) ? $url_info['path'] : '' );
It seems to work, but I don’t know if this is correct or not?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Eliminate PHP warning’ is closed to new replies.