Skip to content

Commit

Permalink
Move js/zxcvbn.js to js/vendor/zxcvbn.js
Browse files Browse the repository at this point in the history
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
  • Loading branch information
MauricioFauth committed Jun 14, 2017
1 parent 47865ee commit 3f632ef
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion server_privileges.php
Expand Up @@ -30,7 +30,7 @@
$header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('server_privileges.js');
$scripts->addFile('zxcvbn.js');
$scripts->addFile('vendor/zxcvbn.js');

if ((isset($_REQUEST['viewing_mode'])
&& $_REQUEST['viewing_mode'] == 'server')
Expand Down
2 changes: 1 addition & 1 deletion server_replication.php
Expand Up @@ -24,7 +24,7 @@
$scripts = $header->getScripts();
$scripts->addFile('server_privileges.js');
$scripts->addFile('replication.js');
$scripts->addFile('zxcvbn.js');
$scripts->addFile('vendor/zxcvbn.js');

/**
* Checks if the user is allowed to do what he tries to...
Expand Down
2 changes: 1 addition & 1 deletion user_password.php
Expand Up @@ -25,7 +25,7 @@
$header = $response->getHeader();
$scripts = $header->getScripts();
$scripts->addFile('server_privileges.js');
$scripts->addFile('zxcvbn.js');
$scripts->addFile('vendor/zxcvbn.js');

/**
* Displays an error message and exits if the user isn't allowed to use this
Expand Down

0 comments on commit 3f632ef

Please sign in to comment.