Merge pull request #14736 from nextcloud/fix/do_not_load_showpassword

Fix showpassword loads
This commit is contained in:
Morris Jobke 2019-03-18 16:17:39 +01:00 committed by GitHub
commit 0e49302eea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 5 deletions

View File

@ -1,8 +1,5 @@
<?php /** @var $l OC_L10N */ ?> <?php /** @var $l OC_L10N */ ?>
<?php <?php
script('core', [
'jquery-showpassword',
]);
script('user_ldap', [ script('user_ldap', [
'renewPassword', 'renewPassword',
]); ]);

View File

@ -1,6 +1,5 @@
<?php <?php
script('core', [ script('core', [
'jquery-showpassword',
'installation' 'installation'
]); ]);
?> ?>

View File

@ -28,7 +28,6 @@ script('settings', [
if($_['passwordChangeSupported']) { if($_['passwordChangeSupported']) {
script('settings', 'security_password'); script('settings', 'security_password');
script('jquery-showpassword');
} }
?> ?>