Bug in get_user_activity_stream()
-
There is a bug in
class_functions.phpfor functionget_user_activity_stream(). When there are no passed results, it passes a variable called$paramsinstead of$args. The corrected code is as follows:if(!empty($passed_result)) { $result = $passed_result; }else{ $args['import_count'] = $args['per_page']; $result = WP_CRM_F::get_events($args); }thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Bug in get_user_activity_stream()’ is closed to new replies.