From d70e2898c55bdef5d643a7efa6c359bdc0507b87 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 6 Mar 2023 22:06:37 +0000 Subject: [PATCH 1/2] PHP warning fix. --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index 6d09120..3f8aeec 100644 --- a/index.php +++ b/index.php @@ -1139,7 +1139,7 @@ public function upgrade_c($v1,$v2) $upgrader_object = $v1; $options = $v2; - if($upgrader_object->result['destination_name']!=$this->internal['id']) + if( isset($upgrader_object->result['destination_name']) AND $upgrader_object->result['destination_name']!=$this->internal['id']) { return; } From f0d1f8a39b86e0559d8a7394ea5c101ba44cc14b Mon Sep 17 00:00:00 2001 From: root Date: Mon, 6 Mar 2023 22:08:09 +0000 Subject: [PATCH 2/2] Updated readme. --- readme.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme.txt b/readme.txt index ad619d1..ab1d6c5 100644 --- a/readme.txt +++ b/readme.txt @@ -62,6 +62,7 @@ To be updated = 2.1.7 = * Added alt tags and aria labels for screen readers to call to action button under posts and sitebar widgets and forms for accessibility. +* Fixed a PHP warning = 2.1.6 = @@ -186,6 +187,7 @@ To be updated = 2.1.7 = * Added alt tags and aria labels for screen readers to call to action button under posts and sitebar widgets and forms for accessibility +* Fixed a PHP warning = 2.1.6 =