]> git.mxchange.org Git - friendica.git/blobdiff - mod/probe.php
Catch HTTPExceptions in App::runFrontend()
[friendica.git] / mod / probe.php
index deb80c0de28d5c40b975a8679809def49ff9e1a9..7c41df8ac5de26f4a476020b12f5482f85e658f7 100644 (file)
@@ -4,31 +4,34 @@
  */
 use Friendica\App;
 use Friendica\Core\L10n;
+use Friendica\Core\System;
 use Friendica\Network\Probe;
 
 function probe_content(App $a)
 {
        if (!local_user()) {
-               http_status_exit(403, ["title" => L10n::t("Public access denied."),
+               System::httpExit(403, ["title" => L10n::t("Public access denied."),
                        "description" => L10n::t("Only logged in users are permitted to perform a probing.")]);
                killme();
        }
 
+       $o = '<div class="generic-page-wrapper">';
        $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'] . '" />';
+       $o .= 'Lookup address: <input type="text" style="width: 250px;" name="addr" value="' . defaults($_GET, 'addr', '') . '" />';
        $o .= '<input type="submit" name="submit" value="Submit" /></form>';
 
        $o .= '<br /><br />';
 
-       if (x($_GET, 'addr')) {
+       if (!empty($_GET['addr'])) {
                $addr = trim($_GET['addr']);
                $res = Probe::uri($addr, "", 0, false);
                $o .= '<pre>';
                $o .= str_replace("\n", '<br />', print_r($res, true));
                $o .= '</pre>';
        }
+       $o .= '</div>';
 
        return $o;
 }