diff options
author | friendica <info@friendica.com> | 2011-11-29 19:53:18 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2011-11-29 19:53:18 -0800 |
commit | 84e197cde9f5f43a7c882219e4022f73e1dcf83e (patch) | |
tree | 756c73b2e19f3e4118163aef746cdd77a6afc1ee /mod/network.php | |
parent | 7474c48022e56bf32cf98271b3f58f211a7692fe (diff) | |
download | volse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.tar.gz volse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.tar.bz2 volse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.zip |
missing paren
Diffstat (limited to 'mod/network.php')
-rw-r--r-- | mod/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/network.php b/mod/network.php index 8ba736fbe..253fbac44 100644 --- a/mod/network.php +++ b/mod/network.php @@ -374,7 +374,7 @@ 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' or `tag` 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) ); |