]> git.mxchange.org Git - friendica.git/commitdiff
group_public_members sql query typo
authorFriendika <info@friendika.com>
Tue, 13 Sep 2011 22:26:47 +0000 (15:26 -0700)
committerFriendika <info@friendika.com>
Tue, 13 Sep 2011 22:26:47 +0000 (15:26 -0700)
boot.php
include/group.php

index 19c8a86c6f5f87661906463e1462c96039afe9ff..c369696f19ce206d086ee747fe7736e5dcfddc04 100644 (file)
--- a/boot.php
+++ b/boot.php
@@ -7,7 +7,7 @@ require_once('include/text.php');
 require_once("include/pgettext.php");
 
 
-define ( 'FRIENDIKA_VERSION',      '2.2.1101' );
+define ( 'FRIENDIKA_VERSION',      '2.2.1102' );
 define ( 'DFRN_PROTOCOL_VERSION',  '2.21'    );
 define ( 'DB_UPDATE_VERSION',      1087      );
 
index 309949680aa7f4cddf6989f96888f6fc3bf19ee3..d92e24e205a3875ecb427c8378d24684af35ad38 100644 (file)
@@ -124,7 +124,7 @@ function group_public_members($gid) {
                $r = q("SELECT `contact`.`id` AS `contact-id` FROM `group_member` 
                        LEFT JOIN `contact` ON `contact`.`id` = `group_member`.`contact-id` 
                        WHERE `gid` = %d AND `group_member`.`uid` = %d 
-                       AND  `contact`.`network` = '%s' AND `contact`.`notify` != '' )",
+                       AND  `contact`.`network` = '%s' AND `contact`.`notify` != '' ",
                        intval($gid),
                        intval(local_user()),
                        dbesc(NETWORK_OSTATUS)