Skip to content

Commit 6f85941

Browse files
committed
fixed: using new cache functions
1 parent 288657b commit 6f85941

File tree

3 files changed

+3
-20
lines changed

3 files changed

+3
-20
lines changed

CHANGES.txt

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
= Version History =
22
x.x:
3-
43
- added: option to hide the My Status sidebar
4+
- fixed: using new cache functions
55
- changed: index groups widget now optionally respects group ordering
66

77
2.5 (2013-04-05):
8-
98
- added: auto join groups based on email invitation when joining the site
109
- added: different group ACL fixes
1110
- fixed: problem with email invites from hidden groups
@@ -16,7 +15,6 @@ x.x:
1615
- removed: group creation limited to admins (Elgg core now offers this option)
1716

1817
2.4 (2012-11-06):
19-
2018
- added: filter groups based on a tag field in index_group widget
2119
- fixed: problem with group invite autocomplete on subfolder Elgg installations (thanks to Bruno Grossmann http://community.elgg.org/profile/bruno)
2220
- fixed: unable to edit a group as a normal user when limiting group creation (thanks to buraddo http://community.elgg.org/profile/buraddo)
@@ -26,7 +24,6 @@ x.x:
2624
- changed: layout of start.php to be more inline with Elgg
2725

2826
2.3 (2012-07-31):
29-
3027
- added: discussion widget from widget manager
3128
- added: group_forum_topics widget from widget manager
3229
- added: group_news widget from widget manager
@@ -46,7 +43,6 @@ x.x:
4643
- changed: plugin settings layout
4744

4845
2.2 (2012-05-07):
49-
5046
- added: featured group widget
5147
- added: a index widget (for Widget Manager) to show the latest discussions
5248
- added: widget title link for group membership (in combination with Widget Manager)
@@ -62,60 +58,50 @@ x.x:
6258
- changed: restored limited functionality of group activity river
6359

6460
2.1 (2012-04-16):
65-
6661
- added: option to limit group creation to site administrators
6762
- fixed: language error in group sorting (thanks to LeeUK)
6863
- fixed: depricated notice getOwner() => getOwnerGUID()
6964

7065
2.0 BETA 1 (2012-01-17):
71-
7266
- changed: migrated the plugin to Elgg 1.8
7367

7468
1.9 (2011-12-05):
75-
7669
- added: option for group admins to show group widgets to non members in case of a closed group
7770
- changed: activity filter in group river widget (now more advanced)
7871
- changed: group status (open/closed) CSS
7972
- changed: moved changelog to CHANGES.txt in preperation for Elgg 1.8
8073
- changed: plugin information to README.txt in preperation for Elgg 1.8
8174

8275
1.8 (2011-11-11):
83-
8476
- added: activity filter in group river widget
8577
- added: group listing filter: open and closed
8678
- added: group status (open/closed) in owner_block and group stats
8779
- changed: group search listing
8880

8981
1.7 (2011-10-17):
90-
9182
- added: option to make all site users a member of an auto join group
9283
- changed: moved some functions
9384
- changed: transfer group ownership now show members alphabeticly
9485
- changed: group edit now has tabs
9586

9687
1.6 (2011-10-05):
97-
9888
- added: option to resend invites to already invited users
9989
- changed: name of robots view to be less generic
10090

10191
1.5.1 (2011-09-28):
102-
10392
- changed: group mail form to support member selection
10493

10594
1.5 (2011-09-23):
106-
10795
- added: admin option to manage if closed groups are indexed by search engines (default no)
10896
- added: admin option to automaticly enable group notifications on group join
10997
- added: option to mark a group for auto join (on registration of a new user)
11098

11199
1.4 (2011-07-27):
112-
113100
- added: notification on group transfer to the new owner
114101
- fixed: transfer pulldown showing up empty in some cases
115102
- fixed: transfer pulldown not showing for admins in some cases
116103

117104
1.3 (2011-07-11):
118-
119105
- added: dutch translation
120106
- added: option to invite users by CVS upload
121107
- fixed: some errors in engish translation
@@ -126,18 +112,15 @@ x.x:
126112
- changed: moved some code from action to functions for reusability
127113

128114
1.2 (2011-06-27):
129-
130115
- added: alfabetical group sorting
131116
- added: plugin setting which group listing is default (admin option)
132117
- added: option to invite users to a group by e-mail address (admin option)
133118
- changed: banned users no longer show in in group invite
134119

135120
1.1 (2011-06-17):
136-
137121
- added: group activity widget: support for more groups
138122
- fixed: accept membership request link
139123
- fixed: manage membership approval always visible
140124

141125
1.0 (2011-06-10):
142-
143126
- initial version

actions/admin/fix_auto_join.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636

3737
// cleanup cache, to be sure
38-
invalidate_cache_for_entity($user_guid);
38+
_elgg_invalidate_cache_for_entity($user_guid);
3939
}
4040
}
4141

manifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<requires>
1212
<type>elgg_release</type>
13-
<version>1.8.13</version>
13+
<version>1.8.15</version>
1414
</requires>
1515

1616
<requires>

0 commit comments

Comments
 (0)