From: Adrian Lang Date: Sun, 8 Mar 2009 16:09:09 +0000 (+0100) Subject: Remove additional output as response to updateprofile. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6ab9d6b14016cf97fe1a31d89591e1a0e919c8a7;p=quix0rs-gnu-social.git Remove additional output as response to updateprofile. This output breaks our own response validation and is not part of the OMB spec. --- diff --git a/actions/updateprofile.php b/actions/updateprofile.php index 4751a04ff3..2268c432f1 100644 --- a/actions/updateprofile.php +++ b/actions/updateprofile.php @@ -34,6 +34,8 @@ class UpdateprofileAction extends Action $server = omb_oauth_server(); list($consumer, $token) = $server->verify_request($req); if ($this->update_profile($req, $consumer, $token)) { + header('HTTP/1.1 200 OK'); + header('Content-type: text/plain'); print "omb_version=".OMB_VERSION_01; } } catch (OAuthException $e) { @@ -173,10 +175,6 @@ class UpdateprofileAction extends Action return false; } } - header('HTTP/1.1 200 OK'); - header('Content-type: text/plain'); - print 'Updated profile'; - print "\n"; return true; } }