I correctly replaced the code of functions.php shown in the follows:
Original Code
$comments_by_type = &separate_comments(get_comments('post_id=' . $id));
Replace to;
$get_comments= get_comments('post_id=' . $id);
$comments_by_type = &separate_comments($get_comments);
I misread the comments above. Now, it is working well after replacing the code. Great.