Remove additional output as response to updateprofile.

This output breaks our own response validation and is not part of the OMB spec.
This commit is contained in:
Adrian Lang 2009-03-08 17:09:09 +01:00
parent 4c8c9bb9df
commit 6ab9d6b140
1 changed files with 2 additions and 4 deletions

View File

@ -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;
}
}