Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(provisionning_api): Remove parameters that are not set into template
Signed-off-by: Thomas Citharel <[email protected]>
  • Loading branch information
tcitworld authored and backportbot[bot] committed Aug 28, 2024
commit 35408e11b644aea72fec1dc88340570b5173f77a
5 changes: 1 addition & 4 deletions core/templates/confirmation.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,12 @@
?>

<div class="update">
<form method="POST" action="<?php print_unescaped($_['targetUrl']);?>">
<form method="POST">
<h2><?php p($_['title']) ?></h2>
<p><?php p($_['message']) ?></p>
<div class="buttons">
<input type="submit" class="primary" value="<?php p($_['action']); ?>">
</div>
<?php foreach ($_['parameters'] as $name => $value) {?>
<input type="hidden" name="<?php p($name); ?>" value="<?php p($value); ?>">
<?php } ?>
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>">
</form>
</div>