
Just to know it, what php-Version are you using?
There you go:
Open statistics/includes/functions.php
Find:
Code: Select all
function get_profile_field_data($profile_field, &$total_values_set, $limit_count = 0, &$total_groups = 0)
Code: Select all
function get_profile_field_data($profile_field, &$total_values_set, &$total_groups, $limit_count = 0)
Find:
Code: Select all
$field_data = get_profile_field_data($current_field, $total_values_set[$current_field['field_id']], $limit_count, $total_data_groups);
Code: Select all
$field_data = get_profile_field_data($current_field, $total_values_set[$current_field['field_id']], $total_data_groups, $limit_count);
P.S: Don't blame me, blame php.
