Discovered that trouble is caused by
function include_future_posts($query)
{
$query-> set('post_status', array('publish', 'future'));
}
add_action('pre_get_posts' , 'include_future_posts');
But I still don’t know why.
Thanks, but that doesn’t solve the problem…