Problems with php 8.1.2
-
At various points in the code ,lines like this fail if the option is not present:
if ($options['enable_pages'] ==true) {
I have recoded them to say (eg) :
if ( isset($options['enable_pages']) ){
The topic ‘Problems with php 8.1.2’ is closed to new replies.