]> git.mxchange.org Git - friendica.git/blobdiff - mod/webfinger.php
Merge pull request #4328 from tobiasd/20180125-msg
[friendica.git] / mod / webfinger.php
index d823bd2dc217b988c8f5d41839ee22f77bfde8a8..3e205ec03057afb82c686ed622a729f897243cc4 100644 (file)
@@ -1,12 +1,21 @@
 <?php
-require_once("include/Probe.php");
-
-function webfinger_content(App $a) {
+/**
+ * @file mod/webfinger.php
+ */
+use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Network\Probe;
 
+function webfinger_content(App $a)
+{
        if (!local_user()) {
-               http_status_exit(403,
-                               array("title" => t("Public access denied."),
-                                       "description" => t("Only logged in users are permitted to perform a probing.")));
+               http_status_exit(
+                       403,
+                       [
+                               "title" => L10n::t("Public access denied."),
+                               "description" => L10n::t("Only logged in users are permitted to perform a probing.")
+                       ]
+               );
                killme();
        }
 
@@ -18,11 +27,11 @@ function webfinger_content(App $a) {
 
        $o .= '<br /><br />';
 
-       if(x($_GET,'addr')) {
+       if (x($_GET, 'addr')) {
                $addr = trim($_GET['addr']);
                $res = Probe::lrdd($addr);
                $o .= '<pre>';
-               $o .= str_replace("\n",'<br />',print_r($res,true));
+               $o .= str_replace("\n", '<br />', print_r($res, true));
                $o .= '</pre>';
        }
        return $o;