2015-04-01 18:01:40 -04:00
|
|
|
<?php
|
2017-02-15 16:26:02 +00:00
|
|
|
|
2015-03-20 14:24:44 -04:00
|
|
|
$filter = new InputFilter();
|
|
|
|
|
if (isset($_POST['NextStep'])) {
|
|
|
|
|
$nextStep = $filter->xssFilterHard($_POST['NextStep'], "url"); ?>
|
2012-07-11 18:22:10 -04:00
|
|
|
<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"
|
2015-03-20 14:24:44 -04:00
|
|
|
onclick="javascript:location.href='<?php echo $nextStep; ?>'">
|
2012-07-11 18:22:10 -04:00
|
|
|
</div>
|
|
|
|
|
<?php
|
|
|
|
|
}
|
|
|
|
|
|