]> git.mxchange.org Git - friendica.git/blobdiff - mod/probe.php
Fix profile wrong DISTINCT + ORDER BY
[friendica.git] / mod / probe.php
index c368a50f584be647e332b41c761144be32c0a291..8c951a7fcfd62f63f9c3fbe5bda5a02af735ad65 100644 (file)
@@ -2,13 +2,20 @@
 
 require_once('include/Scrape.php');
 
-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.")));
+               killme();
+       }
 
        $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 .= '<input type="submit" name="submit" value="Submit" /></form>'; 
+       $o .= '<input type="submit" name="submit" value="Submit" /></form>';
 
        $o .= '<br /><br />';