aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2011-11-29 19:53:18 -0800
committerfriendica <info@friendica.com>2011-11-29 19:53:18 -0800
commit84e197cde9f5f43a7c882219e4022f73e1dcf83e (patch)
tree756c73b2e19f3e4118163aef746cdd77a6afc1ee /mod
parent7474c48022e56bf32cf98271b3f58f211a7692fe (diff)
downloadvolse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.tar.gz
volse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.tar.bz2
volse-hubzilla-84e197cde9f5f43a7c882219e4022f73e1dcf83e.zip
missing paren
Diffstat (limited to 'mod')
-rw-r--r--mod/network.php2
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)
);