$principal->fullname is not a method (fixes #101)

This commit is contained in:
Florian Schlichting 2017-01-01 12:35:45 +01:00
parent 3b85efc88a
commit c305bef787
2 changed files with 2 additions and 2 deletions

View File

@ -384,7 +384,7 @@ class HTTPAuthSession {
$this->user_no = $principal->user_no();
$this->principal_id = $principal->principal_id();
$this->email = $principal->email();
$this->fullname = $principal->fullname();
$this->fullname = $principal->fullname;
$this->dav_name = $principal->dav_name();
$this->principal = $principal;

View File

@ -73,7 +73,7 @@ class PublicSession {
$this->user_no = $principal->user_no();
$this->principal_id = $principal->principal_id();
$this->email = $principal->email();
$this->fullname = $principal->fullname();
$this->fullname = $principal->fullname;
$this->dav_name = $principal->dav_name();
$this->principal = $principal;