Skip to content

Commit

Permalink
Fix double escaping of slogan
Browse files Browse the repository at this point in the history
Slogan is already escaped in https://github.com/nextcloud/server/blob/cce4c285dbfd6957f50112b234b3545ebcceac54/apps/theming/lib/ThemingDefaults.php#L142

Fixes nextcloud/server#7460

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
  • Loading branch information
MorrisJobke committed Dec 12, 2017
1 parent 8561a72 commit 67b0167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/wizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</p>
</div>

<h1><?php p($theme->getSlogan()); ?></h1>
<h1><?php print_unescaped($theme->getSlogan()); ?></h1>
<p><?php p($l->t('Access & share your files, calendars, contacts, mail & more from any device, on your terms'));?></p>

</div>
Expand Down

0 comments on commit 67b0167

Please sign in to comment.