From: Mikael Nordfeldth Date: Wed, 13 Jan 2016 21:07:39 +0000 (+0100) Subject: OpenGraph image/thumbnail width and height X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=24d9d7664451bd59a12c1899ef03fccba5fccd04;p=quix0rs-gnu-social.git OpenGraph image/thumbnail width and height --- diff --git a/plugins/Oembed/lib/opengraphhelper.php b/plugins/Oembed/lib/opengraphhelper.php index 4573f5d8ab..ccc1c2b546 100644 --- a/plugins/Oembed/lib/opengraphhelper.php +++ b/plugins/Oembed/lib/opengraphhelper.php @@ -8,7 +8,7 @@ if (!defined('GNUSOCIAL')) { exit(1); } */ class OpenGraphHelper { - const KEY_REGEX = '/^og\:(\w+)(?:\:(\w+))?/'; + const KEY_REGEX = '/^og\:(\w+(?:\:\w+)?)/'; protected static $property_map = [ 'site_name' => 'provider_name', 'title' => 'title', @@ -16,6 +16,8 @@ class OpenGraphHelper 'type' => 'type', 'url' => 'url', 'image' => 'thumbnail_url', + 'image:height' => 'thumbnail_height', + 'image:width' => 'thumbnail_width', ]; // This regex map has: /pattern(match)/ => matchindex | string