- Issue created by @zengenuity
- Status changed to Needs review
about 1 year ago 7:46pm 20 December 2023 - last update
about 1 year ago 10 pass - Status changed to Needs work
7 months ago 9:21am 21 May 2024 - π¬π§United Kingdom joachim
I'm afraid I don't follow this at all.
I can *just about* understand the problem at other issue. How was that fixed incorrectly?
+++ b/src/MetatagImport.php @@ -205,6 +205,18 @@ class MetatagImport { + if (!empty($raw_value[0]['value'])) { + if (function_exists('metatag_data_decode')) { + $raw_tags = metatag_data_decode($raw_value[0]['value']); + } + else { + $raw_tags = unserialize($raw_value[0]['value']);
This could use comments to explain what's going on.