Conflicts

This commit is contained in:
Paula Quispe
2017-07-12 16:38:29 -04:00
3 changed files with 2 additions and 22 deletions

View File

@@ -2285,4 +2285,5 @@ class Derivation
}
return $iNewDelIndex;
}
}

View File

@@ -427,19 +427,12 @@ try {
setcookie("PM-TabPrimary", 101010010, time() + (24 * 60 * 60), '/');
}
$oHeadPublisher = &headPublisher::getSingleton();
$oHeadPublisher->extJsInit = true;
$oHeadPublisher->addExtJsScript('login/init', false); //adding a javascript file .js
$oHeadPublisher->assign('uriReq', $sLocation);
$oPluginRegistry =& PMPluginRegistry::getSingleton();
if ($oPluginRegistry->existsTrigger ( PM_AFTER_LOGIN )) {
$oPluginRegistry->executeTriggers ( PM_AFTER_LOGIN , $_SESSION['USER_LOGGED'] );
}
G::RenderPage('publish', 'extJs');
//G::header('Location: ' . $sLocation);
G::header('Location: ' . $sLocation);
die;
} catch ( Exception $e ) {
$aMessage['MESSAGE'] = $e->getMessage();

View File

@@ -1,14 +0,0 @@
Ext.onReady(function(){
location.href = uriReq;
var hideMask = function () {
Ext.get('loading').remove();
Ext.fly('loading-mask').fadeOut({
remove:true,
callback : ''
});
}
hideMask.defer(250);
});