
Hugh Jackman refuses to return to Wolverine lately, Deadpool's creator sends an invitation / instructions to the actor.
Do they know Hugh Jackman He gladly excluded (and, first of all, the bounce option) Wolverine More than just a shadow next to it Deadpool. He duplicated that "Ryan Reynolds Try it in every possible way, "but it does not.
Well, this time Reynolds does not face it cross The Wolverine and the Mercenary Mommy on the big screen, but the founder of Deadpool in Marvel Comics, Rob Liefeld!
This is when Liefeld told him from his account Instagram:
"Hugh Jackman, dear, we want to see true verification that you want to make your final comment, but we want to see fans wanting the deepest desire and disillusionment to return to Wolverine Ryan as a part of Deadpool. He has been in the comic business and logan and Wade for some 33 years Talk to him, I can guarantee and confirm the reaction before the audience, I never lived like this. Wolverine is my favorite story of comics, he has inspired all aspects of the creation of Deadpool! Please consider taking your claws again for a wonderful adventure! "
The Jackman also called Wolverine # 154-155, the "Father of Deadpool", the Marvel comics crossed one of the most memorable arches.
Is Jackman thinking again?

Julio Vélez
Independent journalist over 16 years (PREMIERE Films since 2006). He specializes in anime, comics, dubbing, technology and video games. Favorite sagas: Doctor Who, Star Trek and Star Wars. Batimaníaco, eighties geek and hardcore gamer.
(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(){
}