summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-02-25 22:54:05 +0100
committerBernhard Posselt <nukeawhale@gmail.com>2013-02-25 22:54:05 +0100
commitb537cecdf37b01df12a1f6ef3f104f1809f5c086 (patch)
tree8ae06e298801ea73a3791fd9515c96d8f928ce10 /core/templates
parent946a064fc6b57915c09026e0b02d0bed01a852e3 (diff)
downloadnextcloud-server-b537cecdf37b01df12a1f6ef3f104f1809f5c086.tar.gz
nextcloud-server-b537cecdf37b01df12a1f6ef3f104f1809f5c086.zip
add CSP turned on for angularjs
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.base.php2
-rw-r--r--core/templates/layout.guest.php2
-rw-r--r--core/templates/layout.user.php2
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 d0869cb8404..3ec6a98fe0a 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>