]> git.mxchange.org Git - friendica.git/blobdiff - mod/probe.php
Fixes:
[friendica.git] / mod / probe.php
index dfd4792c9b97131123ea81f846240fe46e11f0b6..5e7a5253fda20ed6c6733ce038ce88b8cdc5af38 100644 (file)
@@ -1,17 +1,21 @@
 <?php
-
+/**
+ * @file mod/probe.php
+ */
 use Friendica\App;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
 use Friendica\Network\Probe;
 
-function probe_content(App $a) {
-
+function probe_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.")));
+               System::httpExit(403, ["title" => L10n::t("Public access denied."),
+                       "description" => L10n::t("Only logged in users are permitted to perform a probing.")]);
                killme();
        }
 
-       $o .= '<h3>Probe Diagnostic</h3>';
+       $o  = '<h3>Probe Diagnostic</h3>';
 
        $o .= '<form action="probe" method="get">';
        $o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] . '" />';