summaryrefslogtreecommitdiffstats
path: root/lib/template.php
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2012-10-04 13:54:30 +0200
committerBjörn Schießle <schiessle@owncloud.com>2012-10-05 10:32:38 +0200
commitf493e97f5dc46b4ec7f73dbfc3bd42537ff0761c (patch)
tree3cb3f91dd962aa77d8096b12f15fac549bf2c9a4 /lib/template.php
parent4fd53eca06e12b053f4760f2b776eab0e0e36ce9 (diff)
downloadnextcloud-server-f493e97f5dc46b4ec7f73dbfc3bd42537ff0761c.tar.gz
nextcloud-server-f493e97f5dc46b4ec7f73dbfc3bd42537ff0761c.zip
always generate access token, also for forms shown to anonymous users (e.g. public shares)
Diffstat (limited to 'lib/template.php')
-rw-r--r--lib/template.php6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/template.php b/lib/template.php
index 681b3f0b140..fb81ec62519 100644
--- a/lib/template.php
+++ b/lib/template.php
@@ -155,10 +155,8 @@ class OC_Template{
$this->renderas = $renderas;
$this->application = $app;
$this->vars = array();
- if($renderas == 'user') {
- $this->vars['requesttoken'] = OC_Util::callRegister();
- $this->vars['requestlifespan'] = OC_Util::$callLifespan;
- }
+ $this->vars['requesttoken'] = OC_Util::callRegister();
+ $this->vars['requestlifespan'] = OC_Util::$callLifespan;
$parts = explode('/', $app); // fix translation when app is something like core/lostpassword
$this->l10n = OC_L10N::get($parts[0]);
header('X-Frame-Options: Sameorigin');