mirror of
https://github.com/nextcloud/server.git
synced 2026-02-15 00:38:51 -05:00
fix(provisionning_api): Remove parameters that are not set into template
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
469e458778
commit
0601a3f8e0
1 changed files with 1 additions and 4 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Reference in a new issue