diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-02 17:21:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-02 17:21:13 +0200 |
commit | c2ef47ee13799bf0b5a0dbe97e54a021c888d8eb (patch) | |
tree | 65e9f150b111a3c551a401c942d95ba2bad168ac | |
parent | 3aa3fb4709debaa4d30226ce99f433f34ff49b3b (diff) | |
parent | 869a674f29de68f2f3f706e9c9c54b2b6c5621fa (diff) | |
download | nextcloud-server-c2ef47ee13799bf0b5a0dbe97e54a021c888d8eb.tar.gz nextcloud-server-c2ef47ee13799bf0b5a0dbe97e54a021c888d8eb.zip |
Merge pull request #10757 from coliff/patch-1
remove type="text/javascript" from index.html
-rw-r--r-- | index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.html b/index.html index f160f46b6fc..1ed4f8b9c8e 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@ <!DOCTYPE html> <html> <head> - <script type="text/javascript"> window.location.href="index.php"; </script> + <script> window.location.href="index.php"; </script> <meta http-equiv="refresh" content="0; URL=index.php"> </head> </html> |