mirror of
https://github.com/sruupl/batflat.git
synced 2026-01-24 06:19:03 +01:00
Fix user false full name in Admin
This commit is contained in:
@@ -59,7 +59,7 @@ class Admin extends Main
|
||||
{
|
||||
$username = $this->getUserInfo('fullname');
|
||||
|
||||
$this->assign['username'] = !empty($username) ? $username : $this->getUserInfo('username');
|
||||
$this->assign['username'] = !empty($username) ? $username : $this->getUserInfo('username', null, true);
|
||||
$this->assign['notify'] = $this->getNotify();
|
||||
$this->assign['path'] = url();
|
||||
$this->assign['version'] = $this->settings->get('settings.version');
|
||||
|
||||
Reference in New Issue
Block a user