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

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
pull/47574/head
Thomas Citharel 2023-03-20 14:38:26 +07:00 committed by backportbot[bot]
parent 0d690ee11d
commit 089edee35f
1 changed files with 1 additions and 4 deletions

@ -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>