X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fwebfinger.php;h=b22b1ee64a69c4dde20dc60fa0c2e58370c72359;hb=41663c7592abe55a958632c3a48265e0a8544d2b;hp=01743f05b0660e8577de7495a999d31419ffeb05;hpb=69a73678ebc18ad27b27f1bf92bc9433b7e7066f;p=friendica.git diff --git a/mod/webfinger.php b/mod/webfinger.php index 01743f05b0..b22b1ee64a 100644 --- a/mod/webfinger.php +++ b/mod/webfinger.php @@ -17,10 +17,11 @@ function webfinger_content(App $a) "description" => L10n::t("Only logged in users are permitted to perform a probing.") ] ); - killme(); + exit(); } - $o = '

Webfinger Diagnostic

'; + $o = '
'; + $o .= '

Webfinger Diagnostic

'; $o .= '
'; $o .= 'Lookup address: '; @@ -35,5 +36,7 @@ function webfinger_content(App $a) $o .= str_replace("\n", '
', print_r($res, true)); $o .= ''; } + $o .= '
'; + return $o; }