diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-09 11:03:46 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-12-09 11:03:46 +0100 |
commit | e61f24f2aae6163e09aa4462c9e2de4d592deb1a (patch) | |
tree | ae68e83e476caebd483376e6ef81b160dc0e1eec | |
parent | 5609d421cd9aa0518a698f245cf0c744fc403772 (diff) | |
parent | be19e78e69b149ac93a694c03eb6bfff11a36c27 (diff) | |
download | nextcloud-server-e61f24f2aae6163e09aa4462c9e2de4d592deb1a.tar.gz nextcloud-server-e61f24f2aae6163e09aa4462c9e2de4d592deb1a.zip |
Merge pull request #12651 from owncloud/add-requesttoken-to-base-template
Add requesttoken to base template
-rw-r--r-- | core/templates/layout.base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.base.php b/core/templates/layout.base.php index 2b496c23246..96229fd370a 100644 --- a/core/templates/layout.base.php +++ b/core/templates/layout.base.php @@ -6,7 +6,7 @@ <!--[if gt IE 9]><html class="ng-csp ie" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><![endif]--> <!--[if !IE]><!--><html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" ><!--<![endif]--> - <head> + <head data-requesttoken="<?php p($_['requesttoken']); ?>"> <title> <?php p($theme->getTitle()); ?> </title> |