]> git.mxchange.org Git - friendica.git/blobdiff - mod/probe.php
Fix profile wrong DISTINCT + ORDER BY
[friendica.git] / mod / probe.php
index 3c2497b2f4480066d1ffbf2b146487b45433def8..8c951a7fcfd62f63f9c3fbe5bda5a02af735ad65 100644 (file)
@@ -4,6 +4,13 @@ require_once('include/Scrape.php');
 
 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.")));
+               killme();
+       }
+
        $o .= '<h3>Probe Diagnostic</h3>';
 
        $o .= '<form action="probe" method="get">';
@@ -12,7 +19,7 @@ function probe_content(App $a) {
 
        $o .= '<br /><br />';
 
-       if (x($_GET,'addr')) {
+       if(x($_GET,'addr')) {
 
                $addr = trim($_GET['addr']);
                $res = probe_url($addr);