Merge pull request #748 from fabrixxm/bug739
add tag to term table. fix hex tag filter. close #739
This commit is contained in:
commit
9b79c6607c
|
@ -83,7 +83,7 @@ function create_tags_from_item($itemid) {
|
||||||
if(ctype_digit(substr(trim($tag),1)))
|
if(ctype_digit(substr(trim($tag),1)))
|
||||||
continue;
|
continue;
|
||||||
// try to ignore html hex escapes, e.g. #x2317
|
// try to ignore html hex escapes, e.g. #x2317
|
||||||
if((substr(trim($tag),1,1) == 'x' || substr(trim($tag),1,1) == 'X') && ctype_digit(substr(trim($tag,2))))
|
if((substr(trim($tag),1,1) == 'x' || substr(trim($tag),1,1) == 'X') && ctype_digit(substr(trim($tag),2)))
|
||||||
continue;
|
continue;
|
||||||
$type = TERM_HASHTAG;
|
$type = TERM_HASHTAG;
|
||||||
$term = substr($tag, 1);
|
$term = substr($tag, 1);
|
||||||
|
|
|
@ -151,10 +151,24 @@ EOT;
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if((! $blocktags) && (! stristr($item['tag'], ']' . $term . '[' ))) {
|
$term_objtype = (($item['resource-id']) ? TERM_OBJ_PHOTO : TERM_OBJ_POST );
|
||||||
q("update item set tag = '%s' where id = %d limit 1",
|
$t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
|
||||||
|
intval($item['id']),
|
||||||
|
dbesc($term)
|
||||||
|
);
|
||||||
|
if((! $blocktags) && $t[0]['tcount']==0 ) {
|
||||||
|
/*q("update item set tag = '%s' where id = %d limit 1",
|
||||||
dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
|
dbesc($item['tag'] . (strlen($item['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
|
||||||
intval($item['id'])
|
intval($item['id'])
|
||||||
|
);*/
|
||||||
|
|
||||||
|
q("INSERT INTO term (oid, otype, type, term, url, uid) VALUE (%d, %d, %d, '%s', '%s', %d)",
|
||||||
|
intval($item['id']),
|
||||||
|
$term_objtype,
|
||||||
|
TERM_HASHTAG,
|
||||||
|
dbesc($term),
|
||||||
|
dbesc($a->get_baseurl() . '/search?tag=' . $term),
|
||||||
|
intval($owner_uid)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -167,12 +181,27 @@ EOT;
|
||||||
$x = q("SELECT `blocktags` FROM `user` WHERE `uid` = %d limit 1",
|
$x = q("SELECT `blocktags` FROM `user` WHERE `uid` = %d limit 1",
|
||||||
intval($r[0]['uid'])
|
intval($r[0]['uid'])
|
||||||
);
|
);
|
||||||
if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) {
|
$t = q("SELECT count(tid) as tcount FROM term WHERE oid=%d AND term='%s'",
|
||||||
|
intval($r[0]['id']),
|
||||||
|
dbesc($term)
|
||||||
|
);
|
||||||
|
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($a->get_baseurl() . '/search?tag=' . $term),
|
||||||
|
intval($owner_uid)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*if(count($x) && !$x[0]['blocktags'] && (! stristr($r[0]['tag'], ']' . $term . '['))) {
|
||||||
q("update item set tag = '%s' where id = %d limit 1",
|
q("update item set tag = '%s' where id = %d limit 1",
|
||||||
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
|
dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $a->get_baseurl() . '/search?tag=' . $term . ']'. $term . '[/url]'),
|
||||||
intval($r[0]['id'])
|
intval($r[0]['id'])
|
||||||
);
|
);
|
||||||
}
|
}*/
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user