add tag to personal

This commit is contained in:
friendica 2011-11-29 19:52:14 -08:00
parent 7b9ba3bb03
commit 7474c48022
2 changed files with 14 additions and 2 deletions

View file

@ -374,7 +374,8 @@ function network_content(&$a, $update = 0) {
$myurl = $a->get_baseurl() . '/profile/'. $a->user['nickname'];
$myurl = substr($myurl,strpos($myurl,'://')+3);
$myurl = str_replace('www.','',$myurl);
$sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where `author-link` regexp '%s') ",
$sql_extra .= sprintf(" AND `item`.`parent` IN (SELECT distinct(`parent`) from item where ( `author-link` regexp '%s' or `tag` regexp '%s' ) ",
dbesc($myurl),
dbesc($myurl)
);
}