14 lines
483 B
PHP
Executable File
14 lines
483 B
PHP
Executable File
<?php
|
|
G::LoadSystem('inputfilter');
|
|
$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)
|
|
<input type="button" value="Continue" class="module_app_button___gray"
|
|
onclick="javascript:location.href='<?php echo $nextStep; ?>'">
|
|
</div>
|
|
<?php
|
|
}
|
|
|