From: Mikael Nordfeldth Date: Mon, 10 Jul 2017 18:28:35 +0000 (+0200) Subject: oEmbed had bad variable reference in error message X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=661930cbe6e240b438a25bcc9eefd59b187c5c3c;p=quix0rs-gnu-social.git oEmbed had bad variable reference in error message --- diff --git a/plugins/Oembed/OembedPlugin.php b/plugins/Oembed/OembedPlugin.php index 06e76404bc..6a277fe74c 100644 --- a/plugins/Oembed/OembedPlugin.php +++ b/plugins/Oembed/OembedPlugin.php @@ -418,7 +418,7 @@ class OembedPlugin extends Plugin $imgData = HTTPClient::quickGet($remoteUrl); $info = @getimagesizefromstring($imgData); if ($info === false) { - throw new UnsupportedMediaException(_('Remote file format was not identified as an image.'), $url); + throw new UnsupportedMediaException(_('Remote file format was not identified as an image.'), $remoteUrl); } elseif (!$info[0] || !$info[1]) { throw new UnsupportedMediaException(_('Image file had impossible geometry (0 width or height)')); }