diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-02-26 00:58:12 -0800 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-02-26 00:58:12 -0800 |
commit | 69eb69be0e8867eae4b9b5e4e724db592d3d9cf9 (patch) | |
tree | 0cdac446ae4f958059b2b66fa035ddf3f273a822 /core | |
parent | b987c76d16a6bdaf931776763dea18915c99e804 (diff) | |
parent | b537cecdf37b01df12a1f6ef3f104f1809f5c086 (diff) | |
download | nextcloud-server-69eb69be0e8867eae4b9b5e4e724db592d3d9cf9.tar.gz nextcloud-server-69eb69be0e8867eae4b9b5e4e724db592d3d9cf9.zip |
Merge pull request #1902 from owncloud/angularcsp
add CSP turned on for angularjs
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/layout.base.php | 2 | ||||
-rw-r--r-- | core/templates/layout.guest.php | 2 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 4233fd8300e..47d552069a0 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html class="ng-csp"> <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/core/templates/layout.guest.php b/core/templates/layout.guest.php index b26020b766b..a84e2b8cef7 100644 --- a/core/templates/layout.guest.php +++ b/core/templates/layout.guest.php @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html class="ng-csp"> <head> <title>ownCloud</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 7a677b88345..10540cfe362 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -1,5 +1,5 @@ <!DOCTYPE html> -<html> +<html class="ng-csp"> <head> <title><?php echo !empty($_['application'])?$_['application'].' | ':'' ?>ownCloud <?php echo !empty($_['user_displayname'])?' ('.$_['user_displayname'].') ':'' ?></title> |