I’ve find the solution to set the update 2.6.2 OK :
line 48 : add_action(‘wp_footer‘, ‘process_post_views_content’);
Just change ‘wp_footer‘ in ‘wp_head’ (as last version), so :
new line 48 : add_action(‘wp_head‘, ‘process_post_views_content’);
And everything works again.