]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
oEmbed had bad variable reference in error message
authorMikael Nordfeldth <mmn@hethane.se>
Mon, 10 Jul 2017 18:28:35 +0000 (20:28 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Mon, 10 Jul 2017 18:28:35 +0000 (20:28 +0200)
plugins/Oembed/OembedPlugin.php

index 06e76404bc54065f1104b29c3e28b844d5cf63c7..6a277fe74c3c729db3543dffa6ce58f321ea9d7b 100644 (file)
@@ -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)'));
         }