Merge pull request #37303 from nextcloud/remove-unset-parameters

This commit is contained in:
Kate 2024-08-28 15:59:41 +02:00 committed by GitHub
commit 8290b1e92e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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