diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-09 01:58:26 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-06-09 01:58:26 +0000 |
commit | 3374741869ae97a5c258aceb3289092340b17f67 (patch) | |
tree | 5f768724f511068ddb31c886a4a1d3082de36695 /engine/lib | |
parent | 63c4aabc26553254a8186d9e27df865bba0cbb26 (diff) | |
download | elgg-3374741869ae97a5c258aceb3289092340b17f67.tar.gz elgg-3374741869ae97a5c258aceb3289092340b17f67.tar.bz2 |
Refs #3510, #3366. Added warning about count vs sum in egef_annotation_count() to trunk.
git-svn-id: http://code.elgg.org/elgg/trunk@9147 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r-- | engine/lib/deprecated-1.8.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engine/lib/deprecated-1.8.php b/engine/lib/deprecated-1.8.php index 12398c8d5..a04907a6d 100644 --- a/engine/lib/deprecated-1.8.php +++ b/engine/lib/deprecated-1.8.php @@ -208,6 +208,12 @@ function get_entities_from_annotations_calculate_x($sum = "sum", $entity_type = /** * Returns entities ordered by the sum of an annotation * + * @warning This is function uses sum instead of count. THIS IS SLOW. See #3366. + * This should be used when you have annotations with different values and you + * want a list of entities ordered by the sum of all of those values. + * If you want a list of entities ordered by the number of annotations on each entity, + * use __get_entities_from_annotations_calculate_x() and pass 'count' as the first param. + * * @deprecated 1.8 Use elgg_get_entities_from_annotation_calculation() * * @param string $entity_type Type of Entity |