Merge pull request #446 from marcoAntonioNina/BUG-9557

BUG 9557 There is no Break Point for After Derivation triggers SOLVED
This commit is contained in:
julceslauhub
2012-08-08 13:05:08 -07:00
2 changed files with 13 additions and 0 deletions

View File

@@ -164,6 +164,18 @@ try {
else {
$loc = $aNextStep['PAGE'];
}
//Triggers After
if ( isset($_SESSION['TRIGGER_DEBUG']['ISSET']) == 1) {
$oTemplatePower = new TemplatePower(PATH_TPL . 'cases/cases_Step.html');
$oTemplatePower->prepare();
$G_PUBLISH = new Publisher;
$G_PUBLISH->AddContent('template', '', '', '', $oTemplatePower);
$_POST['NextStep'] = $loc;
$G_PUBLISH->AddContent('view', 'cases/showDebugFrameLoader');
$G_PUBLISH->AddContent('view', 'cases/showDebugFrameBreaker');
G::RenderPage('publish', 'blank');
exit();
}
G::header("location: $loc");
}

View File

@@ -337,6 +337,7 @@ Ext.onReady(function(){
reader: reader,
sortInfo:{field: 'name', direction: "ASC"},
groupField:'execution_time',
groupDir: 'DESC',
proxy: new Ext.data.HttpProxy({url: 'debug_triggers?r='+Math.random()}),
listeners: {
load : function() {