From 6ab9d6b14016cf97fe1a31d89591e1a0e919c8a7 Mon Sep 17 00:00:00 2001
From: Adrian Lang <mail@adrianlang.de>
Date: Sun, 8 Mar 2009 17:09:09 +0100
Subject: [PATCH] Remove additional output as response to updateprofile.

This output breaks our own response validation and is not part of the OMB spec.
---
 actions/updateprofile.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

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