]> git.mxchange.org Git - friendica.git/commitdiff
Don't show the alternate url syntax in searches
authorMichael Vogel <icarus@dabo.de>
Tue, 25 Aug 2015 03:31:21 +0000 (05:31 +0200)
committerMichael Vogel <icarus@dabo.de>
Tue, 25 Aug 2015 03:31:21 +0000 (05:31 +0200)
include/socgraph.php
mod/dirfind.php

index 9689d83fba2f2f81a42d077178610de8e12a1e61..0f8afcf56df813bd6ff473f9acc71121ab74c237 100644 (file)
@@ -207,7 +207,7 @@ function poco_check($profile_url, $name, $network, $profile_photo, $about, $loca
                );
                if(count($r)) {
                        $network = $r[0]["network"];
-                       $profile_url = $r[0]["url"];
+                       //$profile_url = $r[0]["url"];
                }
        }
 
@@ -729,7 +729,7 @@ function poco_check_server($server_url, $network = "", $force = false) {
                $last_contact = "0000-00-00 00:00:00";
                $last_failure = "0000-00-00 00:00:00";
        }
-       logger("Server ".$server_url." is unknown. Start discovery.", LOGGER_DEBUG);
+       logger("Server ".$server_url." is outdated or unknown. Start discovery. Force: ".$force." Created: ".$servers[0]["created"]." Failure: ".$last_failure." Contact: ".$last_contact, LOGGER_DEBUG);
 
        $failure = false;
        $orig_last_failure = $last_failure;
index 3cee6c1330d3779180475b6239aaef8e4a5dce7b..2295b3772fb68cc634f8782f9e22d5bb6afe3deb 100644 (file)
@@ -1,9 +1,9 @@
 <?php
+require_once('include/contact_widgets.php');
+require_once('include/socgraph.php');
 
 function dirfind_init(&$a) {
 
-       require_once('include/contact_widgets.php');
-
        if(! x($a->page,'aside'))
                $a->page['aside'] = '';
 
@@ -76,6 +76,9 @@ function dirfind_content(&$a, $prefix = "") {
                        $j->items_page = $perpage;
                        $j->page = $a->pager['page'];
                        foreach ($results AS $result) {
+                               if (poco_alternate_ostatus_url($result["url"]))
+                                        continue;
+
                                if ($result["name"] == "") {
                                        $urlparts = parse_url($result["url"]);
                                        $result["name"] = end(explode("/", $urlparts["path"]));