Files
luos/workflow/engine/templates/cases/showDebugFrameBreaker.php

14 lines
454 B
PHP
Raw Normal View History

2015-04-01 18:01:40 -04:00
<?php
2015-03-20 14:24:44 -04:00
$filter = new InputFilter();
if (isset($_POST['NextStep'])) {
$nextStep = $filter->xssFilterHard($_POST['NextStep'], "url"); ?>
<div class="ui-widget-header ui-corner-all" width="100%" align="center">
Processmaker - Debugger (Break Point)&nbsp;&nbsp;&nbsp;&nbsp;
<input type="button" value="Continue" class="module_app_button___gray"
2015-03-20 14:24:44 -04:00
onclick="javascript:location.href='<?php echo $nextStep; ?>'">
</div>
<?php
}