16 lines
651 B
PHP
16 lines
651 B
PHP
<?php
|
|
|
|
$filter = new InputFilter();
|
|
if (isset($_POST['NextStep'])) {
|
|
$nextStep = $filter->xssFilterHard($_POST['NextStep'], "url");
|
|
$refresh = $nextStep == 'cases_Step?breakpoint=triggerdebug' ? 'try {parent.parent.updateCasesTree();' .
|
|
'parent.parent.highlightCasesTree();} catch(e) {}' : '';
|
|
?>
|
|
<div class="ui-widget-header ui-corner-all" width="100%" align="center">
|
|
Processmaker - Debugger (Break Point)
|
|
<input type="button" value="Continue" class="module_app_button___gray"
|
|
onclick="javascript:location.href='<?php echo $nextStep; ?>';<?php echo $refresh; ?>">
|
|
</div>
|
|
<?php
|
|
}
|