Merge pull request #19815 from nextcloud/bugfix/noid/prevent-self-xss-via-invalid-mysql-username

Prevent self-xss via invalid mysql user name on install screen
This commit is contained in:
Roeland Jago Douma 2020-03-07 14:19:55 +01:00 committed by GitHub
commit 1d5058b484
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -15,10 +15,10 @@ script('core', [
<?php foreach($_['errors'] as $err): ?>
<p>
<?php if(is_array($err)):?>
<?php print_unescaped($err['error']); ?>
<span class='hint'><?php print_unescaped($err['hint']); ?></span>
<?php p($err['error']); ?>
<span class='hint'><?php p($err['hint']); ?></span>
<?php else: ?>
<?php print_unescaped($err); ?>
<?php p($err); ?>
<?php endif; ?>
</p>
<?php endforeach; ?>