From: Michael Vogel Date: Thu, 9 Dec 2021 00:20:31 +0000 (+0100) Subject: Fix for ParseUrl ('type' was already in use) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=076b054a63e54a9c3984b3871b843adac9da4eda;p=friendica.git Fix for ParseUrl ('type' was already in use) --- 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']);