fix(provisionning_api): Remove parameters that are not set into template

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
pull/37303/head
Thomas Citharel 2023-03-20 14:38:26 +07:00 committed by provokateurin
parent b4d7498cfb
commit aa8df9b05f
No known key found for this signature in database
1 changed files with 1 additions and 4 deletions

@ -8,15 +8,12 @@
/** @var \OCP\Defaults $theme */ /** @var \OCP\Defaults $theme */
?> ?>
<div class="update"> <div class="update">
<form method="POST" action="<?php print_unescaped($_['targetUrl']);?>"> <form method="POST">
<h2><?php p($_['title']) ?></h2> <h2><?php p($_['title']) ?></h2>
<p><?php p($_['message']) ?></p> <p><?php p($_['message']) ?></p>
<div class="buttons"> <div class="buttons">
<input type="submit" class="primary" value="<?php p($_['action']); ?>"> <input type="submit" class="primary" value="<?php p($_['action']); ?>">
</div> </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']) ?>"> <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>">
</form> </form>
</div> </div>