]> git.mxchange.org Git - friendica.git/blobdiff - include/tags.php
Only update if there is a change
[friendica.git] / include / tags.php
index 6c45a4aee21c4fe63ae07c5660036848892741d4..8720367fae995ff78b7bd5a543705151b5410003 100644 (file)
@@ -1,15 +1,14 @@
 <?php
 
 use Friendica\App;
+use Friendica\Core\System;
 
 function create_tags_from_item($itemid) {
-       $profile_base = App::get_baseurl();
+       $profile_base = System::baseUrl();
        $profile_data = parse_url($profile_base);
        $profile_base_friendica = $profile_data['host'].$profile_data['path']."/profile/";
        $profile_base_diaspora = $profile_data['host'].$profile_data['path']."/u/";
 
-       $searchpath = App::get_baseurl()."/search?tag=";
-
        $messages = q("SELECT `guid`, `uid`, `id`, `edited`, `deleted`, `created`, `received`, `title`, `body`, `tag`, `parent` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
 
        if (!$messages)
@@ -46,7 +45,7 @@ function create_tags_from_item($itemid) {
        $pattern = "/\W\#([^\[].*?)[\s'\".,:;\?!\[\]\/]/ism";
        if (preg_match_all($pattern, $data, $matches))
                foreach ($matches[1] as $match)
-                       $tags["#".strtolower($match)] = ""; // $searchpath.strtolower($match);
+                       $tags["#".strtolower($match)] = "";
 
        $pattern = "/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism";
        if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) {