Fix OC.getCurrentUser() on guest pages
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
e7f0e8ba03
commit
08688af275
|
@ -1,6 +1,10 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="ng-csp" data-placeholder-focus="false" lang="<?php p($_['language']); ?>" data-locale="<?php p($_['locale']); ?>" >
|
||||
<head data-requesttoken="<?php p($_['requesttoken']); ?>">
|
||||
<head
|
||||
<?php if ($_['user_uid']) { ?>
|
||||
data-user="<?php p($_['user_uid']); ?>" data-user-displayname="<?php p($_['user_displayname']); ?>"
|
||||
<?php } ?>
|
||||
data-requesttoken="<?php p($_['requesttoken']); ?>">
|
||||
<meta charset="utf-8">
|
||||
<title>
|
||||
<?php p($theme->getTitle()); ?>
|
||||
|
|
|
@ -122,6 +122,10 @@ class TemplateLayout extends \OC_Template {
|
|||
parent::__construct('core', 'layout.guest');
|
||||
\OC_Util::addStyle('guest');
|
||||
$this->assign('bodyid', 'body-login');
|
||||
|
||||
$userDisplayName = \OC_User::getDisplayName();
|
||||
$this->assign('user_displayname', $userDisplayName);
|
||||
$this->assign('user_uid', \OC_User::getUser());
|
||||
} else if ($renderAs == 'public') {
|
||||
parent::__construct('core', 'layout.public');
|
||||
$this->assign( 'appid', $appId );
|
||||
|
|
Loading…
Reference in New Issue