diff options
author | friendica <info@friendica.com> | 2011-11-16 17:09:58 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-16 17:09:58 -0800 |
commit | c9846b745dfe2a4c20ffe4e1f48bb18da3886fd4 (patch) | |
tree | 98545ad079d64018bc8d6af6099fd53cffe26c88 | |
parent | ede25aabce2e25ce8134157853ff4c7f45e2f784 (diff) | |
download | volse-hubzilla-c9846b745dfe2a4c20ffe4e1f48bb18da3886fd4.tar.gz volse-hubzilla-c9846b745dfe2a4c20ffe4e1f48bb18da3886fd4.tar.bz2 volse-hubzilla-c9846b745dfe2a4c20ffe4e1f48bb18da3886fd4.zip |
allow dup tag names with different urls
-rw-r--r-- | include/items.php | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/include/items.php b/include/items.php index b8e258d3f..ecf19a86e 100644 --- a/include/items.php +++ b/include/items.php @@ -1469,10 +1469,11 @@ function consume_feed($xml,$importer,&$contact, &$hub, $datedir = 0, $pass = 0) continue; // extract tag, if not duplicate, add to parent item - if($xo->content) { - if(! (stristr($r[0]['tag'],trim($xo->content)))) { + if($xo->id && $xo->content) { + $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]'; + if(! (stristr($r[0]['tag'],$newtag))) { q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1", - dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'), + dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag), intval($r[0]['id']) ); } @@ -2011,15 +2012,17 @@ function local_delivery($importer,$data) { if(($xt->type == ACTIVITY_OBJ_NOTE) && ($xt->id == $r[0]['uri'])) { // extract tag, if not duplicate, and this user allows tags, add to parent item - if($xo->content) { - if(! (stristr($r[0]['tag'],trim($xo->content)))) { + if($xo->id && $xo->content) { + $newtag = '#[url=' . $xo->id . ']'. $xo->content . '[/url]'; + + if(! (stristr($r[0]['tag'],$newtag))) { $i = q("SELECT `blocktags` FROM `user` where `uid` = %d LIMIT 1", intval($importer['importer_uid']) ); if(count($i) && ! ($i[0]['blocktags'])) { q("UPDATE item SET tag = '%s' WHERE id = %d LIMIT 1", - dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . '#[url=' . $xo->id . ']'. $xo->content . '[/url]'), + dbesc($r[0]['tag'] . (strlen($r[0]['tag']) ? ',' : '') . $newtag), intval($r[0]['id']) ); } |