mirror of
https://github.com/friendica/friendica
synced 2024-11-11 14:22:54 +00:00
Merge pull request #11081 from annando/fix-parseurl
Fix for ParseUrl ('type' was already in use)
This commit is contained in:
commit
0f365a087e
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ class ParseUrl
|
||||||
$siteinfo['language'] = trim($meta_tag['content']);
|
$siteinfo['language'] = trim($meta_tag['content']);
|
||||||
break;
|
break;
|
||||||
case 'og:type':
|
case 'og:type':
|
||||||
$siteinfo['type'] = trim($meta_tag['content']);
|
$siteinfo['pagetype'] = trim($meta_tag['content']);
|
||||||
break;
|
break;
|
||||||
case 'twitter:description':
|
case 'twitter:description':
|
||||||
$siteinfo['text'] = trim($meta_tag['content']);
|
$siteinfo['text'] = trim($meta_tag['content']);
|
||||||
|
|
Loading…
Reference in a new issue