diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 6ae39dc7ef..e7a9abb180 100644 --- a/actions/remotesubscribe.php +++ b/actions/remotesubscribe.php @@ -277,6 +277,7 @@ class RemotesubscribeAction extends Action { if ($result->status != 200) { common_debug('remotesubscribe.php - request token status = "' . $result->status . '"'); + common_debug('remotesubscribe.php - request token body = "' . $result->body . '"'); return NULL; } diff --git a/lib/util.php b/lib/util.php index 59f0aa10f0..de15d13dec 100644 --- a/lib/util.php +++ b/lib/util.php @@ -22,10 +22,11 @@ # Show a server error function common_server_error($msg) { - header('Status: 500 Server Error'); + header('HTTP/1.1 500 Server Error'); header('Content-type: text/plain'); print $msg; + print "\n"; exit(); }