Skip to content
Merged
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 provokateurin committed Aug 28, 2024
commit aa8df9b05fc97c497f72b12347a2639d1bb396b9
5 changes: 1 addition & 4 deletions core/templates/confirmation.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,12 @@
/** @var \OCP\Defaults $theme */
?>
<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>