Elgg 1.7.7 has been released with important bugfixes, one of which addresses a low-risk email address exposure bug. Thanks to Manacim Medriano the report!
Bugfixes include:
There were also two API enhancements that developers may be interested in:
Please update now to ensure you and your users are getting the most from your Elgg sites!
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by RaĆ¼l Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
Thanks brett.
i found the bug on accident lol, thanks for the shout out brett :)
Could you direct us to an example use of the callback function?
$my_data = $my_data_stuff = elgg_get_entities
(
'types' => 'group',
'subtypes' => '',
'owner_guids' => $OwnerGuid,
,'callback' => 'my_get_entity_callback'
)
. . .
function my_get_entity_callback($one_data_row)
{
. . post-process data row from elgg_get_entities
. . .
}
default callback is entity_row_to_elggstar() - one could read through the logic in there to see details of what's happening ;)
this might become a nice new additon to the api..