diff options
| author | 2016-02-28 00:08:57 +0100 | |
|---|---|---|
| committer | 2016-02-28 00:08:57 +0100 | |
| commit | 995cf58d249c6a2ddfd042cc5b509914295c882f (patch) | |
| tree | d69c2d37d938faa1094aa3b3455576e01c01b62d /p/scripts/install.js | |
| parent | ffe38c930b864ccd8034445e21297c996fdc258e (diff) | |
CSP bug in install script
https://github.com/FreshRSS/FreshRSS/issues/1075
Diffstat (limited to 'p/scripts/install.js')
| -rw-r--r-- | p/scripts/install.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/p/scripts/install.js b/p/scripts/install.js index 52d8bf8e0..9a49e6031 100644 --- a/p/scripts/install.js +++ b/p/scripts/install.js @@ -42,7 +42,7 @@ function auth_type_change() { var auth_type = document.getElementById('auth_type'); if (auth_type) { auth_type_change(); - auth_type_change.addEventListener('change', auth_type_change); + auth_type.addEventListener('change', auth_type_change); } function mySqlShowHide() { |
