diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-08-14 11:48:56 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-08-14 11:48:56 +0200 |
commit | 44c67451599c1d0470f61f2705c3946f4ec31d99 (patch) | |
tree | b63b8da3b9c03e7c04acfae00274ba50ea89f11c /core/templates/loginflow | |
parent | bd437581187b432fb01603e708e0fbe4a84ccfb2 (diff) | |
download | nextcloud-server-44c67451599c1d0470f61f2705c3946f4ec31d99.tar.gz nextcloud-server-44c67451599c1d0470f61f2705c3946f4ec31d99.zip |
Remove quotes around device name
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/templates/loginflow')
-rw-r--r-- | core/templates/loginflow/authpicker.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/loginflow/authpicker.php b/core/templates/loginflow/authpicker.php index 0d0a38ac480..810c32b4f09 100644 --- a/core/templates/loginflow/authpicker.php +++ b/core/templates/loginflow/authpicker.php @@ -30,7 +30,7 @@ $urlGenerator = $_['urlGenerator']; <div class="picker-window"> <h2><?php p($l->t('Account access')) ?></h2> <p class="info"> - <?php print_unescaped($l->t('You are about to grant "%s" access to your %s account.', [ + <?php print_unescaped($l->t('You are about to grant %s access to your %s account.', [ '<strong>' . \OCP\Util::sanitizeHTML($_['client']) . '</strong>', \OCP\Util::sanitizeHTML($_['instanceName']) ])) ?> |