
Fans of the series Luther? Enjoy the first glance of season 5 of the BBC series with Idris Elba on a troublesome scene.
If you are a fan Idris Elba, you know that right now man is considered to be more than 2018, according to the magazine PeopleAnd they also know that their return is coming Luther, season 5!
For this reason, BBC One revealed to the fans of the English series the first look at the series with the following video in Twitter:
Like #Luther?
Here is the morning Christmas gift from us to you. ?
Get ready for the new line. He will soon come to BBCOne, pic.twitter.com/EkinFCBtmO
– BBC One (@BBCOne) November 9, 2018
It's been nearly a year since the BBC revealed a return Luther in the fifth season, after his exciting TV movie. On the worrying scene, we can see that gangster George Cornelius tortures Detective John Luther with very negative consequences for him …
Creator Neil Cross wrote Season 5, which consists of 4 episodes.
What do you think? There is no release date Luther Season 5, but we're sure to be on the prospect. Or do they want to miss this smile?

Julio Vélez
Independent journalist for more than 16 years (PREMIERE cinema since 2006). He specializes in anime, comics, dubbing, technology and video games. His favorite sagas: Doctor Who, Star Trek and Star Wars. Batimaníaco, the 1980s geek and hardcore player.
(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "http://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));
var statusChangeCallback = function(response) { console.log('statusChangeCallback'); //console.log(response); // The response object is returned with a status field that lets the // app know the current login status of the person. // Full docs on the response object can be found in the documentation // for FB.getLoginStatus(). if (response.status === 'connected') { // Logged into your app and Facebook. $('.lightbox_resenar button').removeAttr("disabled"); fbLogged(); } else if (response.status === 'not_authorized') { // The person is logged into Facebook, but not your app. document.getElementById('status').innerHTML = 'Necesitas aceptar ' + 'el uso de esta app.'; } else { // The person is not logged into Facebook, so we're not sure if // they are logged into this app or not. $('.logged').hide(); $('.lightbox_resenar button').prop('disabled','true'); document.getElementById('status').innerHTML = 'Necesitas autenticarte ' + 'con Facebook.'; } };
// This function is called when someone finishes with the Login // Button. See the onlogin handler attached to it in the sample // code below. function checkLoginState() { FB.getLoginStatus(function(response) { statusChangeCallback(response); console.log("entra a checkLoginState"); }); }
window.fbAsyncInit = function() { FB.init({ appId : '1690110874543896', cookie : true, // enable cookies to allow the server to access // the session xfbml : true, // parse social plugins on this page version : 'v2.8' // use version 2.2 });
// Now that we've initialized the JavaScript SDK, we call // FB.getLoginStatus(). This function gets the state of the // person visiting this page and can return one of three states to // the callback you provide. They can be: // // 1. Logged into your app ('connected') // 2. Logged into Facebook, but not your app ('not_authorized') // 3. Not logged into Facebook and can't tell if they are logged into // your app or not. // // These three cases are handled in the callback function.
FB.getLoginStatus(function(response) { statusChangeCallback(response); }); };
// Here we run a very simple test of the Graph API after login is // successful. See statusChangeCallback() for when this call is made. function fbLogged() { FB.api('/me?fields=id,name,email', function(response) { $('.fbUsrName').text(response.name); $('.fbImgUser').attr("src", 'https://graph.facebook.com/' + response.id + '/picture'); $('#myReviews').attr("href", 'mis-resenas.html?uid=' + response.id); if($('#fbusrid').length){ $('#fbusrid').val(response.id);} $('.logged').show(); $('.nologged').hide(); saveFBUsr(response.id,response.email,response.name); }); }
function fbLogout() { FB.logout(function(response) { console.info("entra") $('.logged').hide(); $('.nologged').show(); if($('#fbusrid').length){$('#fbusrid').val('');} $('.fbUsrName').text(''); }); }
function saveFBUsr(fbuid,email,name){ $.ajax({ url: "/wp-content/themes/cp_theme/cp_ajax/saveFBUser.php", //PARA PRODUCCION //url: "/cinepremiere2017/wp-content/themes/cp_theme/cp_ajax/saveFBUser.php", data: "fbuid="+fbuid+"&email="+email+"&name="+name, success: function(respuesta){ //alert(respuesta); } }); }
function saveResena(e){ e.preventDefault(); //OBTENEMOS LOS DATOS PARA ALMEACENAR LA CRITICA DEL USUARIO var starsUser = parseInt($('input:radio[name=calificacion]:checked').val());; var titleUser = $('.subtitle').val(); var contentUser = CKEDITOR.instances['ckeditor1'].getData(); var postID = $('#cprevid').val(); var fbuID = $('#fbusrid').val();
/*alert(starsUser); alert(titleUser); alert(contentUser); alert(postID); alert(fbuID);*/
if(!isNaN(starsUser) && titleUser!='' && contentUser!='' && postID!='' && fbuID!=''){
//Envio de datos para el ajax var ajax_datos = { startscCritica : starsUser, titleCritica : titleUser, contentCritica : contentUser, postID : postID, IDuserfb : fbuID };
// llamada a la respuesta de ajax $.ajax({ async:true, type: "POST", url: "/wp-content/themes/cp_theme/cp_ajax/registro_critica_usuario.php", //PARA PRODUCCION //url:"/cinepremiere2017/wp-content/themes/cp_theme/cp_ajax/registro_critica_usuario.php", data: ajax_datos, beforeSend:beforeSucess, success: success }); } else {alert('Necesitamos que estés autenticado con Facebook y que ingreseses toda la información necesaria');} }
$(document).ready(function(){ $("#sendResena").click(saveResena); });
function beforeSucess(e){
}
function success(respuesta){ $('.lightbox_resenar').find('.close').trigger('click'); alert("Critica Registada con éxito!!!"); $('.users_op').html(respuesta);
}
function problemas(){
}