]> git.mxchange.org Git - friendica.git/commitdiff
missing paren
authorfriendica <info@friendica.com>
Wed, 30 Nov 2011 03:53:18 +0000 (19:53 -0800)
committerfriendica <info@friendica.com>
Wed, 30 Nov 2011 03:53:18 +0000 (19:53 -0800)
mod/network.php

index 8ba736fbec90133426d3663bafcfbe0bb8b75f2a..253fbac443a9783f2e7b4321a724cb49f77a0ea8 100644 (file)
@@ -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)
                );