Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<form method="post" action="<?= $this->url->href('TaskModificationController', 'update', a..
Decoded Output download
<form method="post" action="<?= $this->url->href('TaskModificationController', 'update', array('task_id' => $task['id'])) ?>">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('id', $values) ?>
<?= $this->form->hidden('project_id', $values) ?>
<?php if (! empty($error_message)): ?>
<p class="alert alert-error"><?= $this->text->e($error_message) ?></p>
<?php else: ?>
<?= $this->render($template, array(
'project' => $project,
'task' => $task,
'external_task' => $external_task,
'tags' => $tags,
'users_list' => $users_list,
'categories_list' => $categories_list,
'values' => $values,
'errors' => $errors,
)) ?>
<?php endif ?>
<?= $this->modal->submitButtons() ?>
</form>
Did this file decode correctly?
Original Code
<form method="post" action="<?= $this->url->href('TaskModificationController', 'update', array('task_id' => $task['id'])) ?>">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('id', $values) ?>
<?= $this->form->hidden('project_id', $values) ?>
<?php if (! empty($error_message)): ?>
<p class="alert alert-error"><?= $this->text->e($error_message) ?></p>
<?php else: ?>
<?= $this->render($template, array(
'project' => $project,
'task' => $task,
'external_task' => $external_task,
'tags' => $tags,
'users_list' => $users_list,
'categories_list' => $categories_list,
'values' => $values,
'errors' => $errors,
)) ?>
<?php endif ?>
<?= $this->modal->submitButtons() ?>
</form>
Function Calls
None |
Stats
MD5 | bd623833ce05bee6548bfdfa0550823c |
Eval Count | 0 |
Decode Time | 87 ms |