Trying to access array offset on value of type bool
-
I assume this plug-in is no longer updated……..
So if you experience PHP notice Trying to access array offset on value of type bool on PHP 7.4 you can circumvent this by changing code in config.php line 29
old code
if(!$se_options || $se_meta['version'] !== SE_VERSION) {
new code
if(!$se_options || !$se_meta || (!isset($se_meta['version']) && SE_VERSION !== $se_meta['version'])) {
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Trying to access array offset on value of type bool’ is closed to new replies.