X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ftagger.php;h=e6619f9fe2d37a148724da85467a21fcca81176f;hb=7d0a7f6be9e6c281ddafdfed799bf8b46785424a;hp=0ee2a0143748925523c763fd2a1d44e4d162aa66;hpb=5a6da8b447430174ae231a3b8203fd4bd8416cc1;p=friendica.git diff --git a/mod/tagger.php b/mod/tagger.php index 0ee2a01437..e6619f9fe2 100644 --- a/mod/tagger.php +++ b/mod/tagger.php @@ -1,13 +1,14 @@ argc > 1) ? notags(trim($a->argv[1])) : 0); @@ -27,7 +28,7 @@ function tagger_content(App $a) { dbesc($item_id) ); - if (! $item_id || (! dbm::is_result($r))) { + if(! $item_id || (! dbm::is_result($r))) { logger('tagger: no item ' . $item_id); return; } @@ -44,7 +45,7 @@ function tagger_content(App $a) { $blocktags = $r[0]['blocktags']; } - if (local_user() != $owner_uid) + if(local_user() != $owner_uid) return; $r = q("select * from contact where self = 1 and uid = %d limit 1", @@ -146,7 +147,7 @@ EOT; // ); - if (! $item['visible']) { + if(! $item['visible']) { $r = q("UPDATE `item` SET `visible` = 1 WHERE `id` = %d AND `uid` = %d", intval($item['id']), intval($owner_uid) @@ -158,7 +159,7 @@ EOT; intval($item['id']), dbesc($term) ); - if ((! $blocktags) && $t[0]['tcount']==0 ) { + if((! $blocktags) && $t[0]['tcount']==0 ) { /*q("update item set tag = '%s' where id = %d", dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . App::get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'), intval($item['id']) @@ -187,18 +188,18 @@ EOT; intval($r[0]['id']), dbesc($term) ); - if (count($x) && !$x[0]['blocktags'] && $t[0]['tcount']==0){ + if(count($x) && !$x[0]['blocktags'] && $t[0]['tcount']==0){ q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)", - intval($r[0]['id']), - $term_objtype, - TERM_HASHTAG, - dbesc($term), - dbesc(App::get_baseurl() . '/search?tag=' . $term), - intval($owner_uid) - ); + intval($r[0]['id']), + $term_objtype, + TERM_HASHTAG, + dbesc($term), + dbesc(App::get_baseurl() . '/search?tag=' . $term), + intval($owner_uid) + ); } - /*if (count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) { + /*if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) { q("update item set tag = '%s' where id = %d", dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . App::get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'), intval($r[0]['id'])