]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
bad URL is a clientError
authorMikael Nordfeldth <mmn@hethane.se>
Fri, 3 Apr 2015 18:58:12 +0000 (20:58 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Fri, 3 Apr 2015 18:58:12 +0000 (20:58 +0200)
plugins/Oembed/actions/oembed.php

index a586bf2b00c8ee9bbdecafb6cfc7b50c9fe9af57..ccba4c42a585dfd8a77949598764a9cff09833a0 100644 (file)
@@ -46,8 +46,7 @@ class OembedAction extends Action
         $url = $this->trimmed('url');
         if (substr(strtolower($url),0,strlen(common_root_url())) !== strtolower(common_root_url())) {
             // TRANS: Error message displaying attachments. %s is the site's base URL.
-            // FIXME: 404 not found?! (this will automatically become a 500 because it's not a serverError!)
-            $this->serverError(sprintf(_('Only %s URLs over plain HTTP please.'), common_root_url()), 404);
+            $this->clientError(sprintf(_('oEmbed data will only be provided for %s URLs.'), common_root_url()), 400);
         }
 
         $path = substr($url,strlen(common_root_url()));