diff options
author | Álvaro Brey <alvaro.brv@gmail.com> | 2022-11-29 12:54:06 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-11-29 14:21:45 +0000 |
commit | 79c39700442218b3a9e6578d9db13c305d42148b (patch) | |
tree | 1253a6387230c729c9971c21a366203076e25839 /core | |
parent | a884f311b78341612adeb6d62f707dda1bae39e7 (diff) | |
download | nextcloud-server-79c39700442218b3a9e6578d9db13c305d42148b.tar.gz nextcloud-server-79c39700442218b3a9e6578d9db13c305d42148b.zip |
Remove Bootstrap version reference from tooltip.scss
We've had some reports that Nextcloud is using an outdated/deprecated Bootstrap version v3.3.5.
I believe this to be caused by the string "Bootstrap v3.3.5" in the changed line, which after bundling ends up in `core-common.js`, and trips up some security scanners.
It may also be worth investigating why the comments are not getting stripped when bundling the JS.
Signed-off-by: Álvaro Brey <alvaro.brv@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/server.css | 2 | ||||
-rw-r--r-- | core/css/tooltip.css | 2 | ||||
-rw-r--r-- | core/css/tooltip.scss | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/server.css b/core/css/server.css index 58fb6189106..f65d7a5c866 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -4512,7 +4512,7 @@ kbd { * @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org> * @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com> * - * Bootstrap v3.3.5 (http://getbootstrap.com) + * Bootstrap (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ diff --git a/core/css/tooltip.css b/core/css/tooltip.css index a215f2e5649..6e8989ab054 100644 --- a/core/css/tooltip.css +++ b/core/css/tooltip.css @@ -6,7 +6,7 @@ * @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org> * @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com> * - * Bootstrap v3.3.5 (http://getbootstrap.com) + * Bootstrap (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ diff --git a/core/css/tooltip.scss b/core/css/tooltip.scss index 5af24032064..e906cf0fd8b 100644 --- a/core/css/tooltip.scss +++ b/core/css/tooltip.scss @@ -5,7 +5,7 @@ * @copyright Copyright (c) 2016, Erik Pellikka <erik@pellikka.org> * @copyright Copyright (c) 2015, Vincent Petry <pvince81@owncloud.com> * - * Bootstrap v3.3.5 (http://getbootstrap.com) + * Bootstrap (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ |