From 076b054a63e54a9c3984b3871b843adac9da4eda Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 9 Dec 2021 01:20:31 +0100 Subject: [PATCH] Fix for ParseUrl ('type' was already in use) --- src/Util/ParseUrl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Util/ParseUrl.php b/src/Util/ParseUrl.php index d65ec0bb55..83af765c5c 100644 --- a/src/Util/ParseUrl.php +++ b/src/Util/ParseUrl.php @@ -455,7 +455,7 @@ class ParseUrl $siteinfo['language'] = trim($meta_tag['content']); break; case 'og:type': - $siteinfo['type'] = trim($meta_tag['content']); + $siteinfo['pagetype'] = trim($meta_tag['content']); break; case 'twitter:description': $siteinfo['text'] = trim($meta_tag['content']);