diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-26 11:50:14 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2009-02-26 11:50:14 +0000 |
commit | efcb56c626f77f5eba68441fe9008531e6842da0 (patch) | |
tree | 628492f2b91caf574bd61844db29fe23a98f2b9a | |
parent | 3702d3c283af3f48ec76ebca66f1885ec7bcd3ca (diff) | |
download | elgg-efcb56c626f77f5eba68441fe9008531e6842da0.tar.gz elgg-efcb56c626f77f5eba68441fe9008531e6842da0.tar.bz2 |
Fixed the first-post forum topic notification error. Fixes #816
git-svn-id: https://code.elgg.org/elgg/trunk@2960 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/groups/start.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/start.php b/mod/groups/start.php index 09c9cf17e..22c8cf0eb 100644 --- a/mod/groups/start.php +++ b/mod/groups/start.php @@ -85,9 +85,9 @@ if (is_callable('object_notifications'))
if ($object instanceof ElggObject) {
if ($object->getSubtype() == 'groupforumtopic') {
- if ($object->countAnnotations('group_topic_post') > 0) {
+ //if ($object->countAnnotations('group_topic_post') > 0) {
object_notifications($event, $object_type, $object);
- }
+ //}
}
}
|