mirror of
https://github.com/friendica/friendica
synced 2024-11-18 16:23:41 +00:00
Removed spaces
This commit is contained in:
parent
24078ad5f0
commit
171cbf0512
1 changed files with 8 additions and 8 deletions
|
@ -285,15 +285,15 @@ class Conversation
|
||||||
$this->profiler->startRecording('rendering');
|
$this->profiler->startRecording('rendering');
|
||||||
$o = '';
|
$o = '';
|
||||||
|
|
||||||
$x['allow_location'] = $x['allow_location'] ?? $user['allow_location'];
|
$x['allow_location'] = $x['allow_location'] ?? $user['allow_location'];
|
||||||
$x['default_location'] = $x['default_location'] ?? $user['default-location'];
|
$x['default_location'] = $x['default_location'] ?? $user['default-location'];
|
||||||
$x['nickname'] = $x['nickname'] ?? $user['nickname'];
|
$x['nickname'] = $x['nickname'] ?? $user['nickname'];
|
||||||
$x['lockstate'] = $x['lockstate'] ?? ACL::getLockstateForUserId($user['uid']) ? 'lock' : 'unlock';
|
$x['lockstate'] = $x['lockstate'] ?? ACL::getLockstateForUserId($user['uid']) ? 'lock' : 'unlock';
|
||||||
$x['acl'] = $x['acl'] ?? ACL::getFullSelectorHTML($this->page, $user['uid'], true);
|
$x['acl'] = $x['acl'] ?? ACL::getFullSelectorHTML($this->page, $user['uid'], true);
|
||||||
$x['bang'] = $x['bang'] ?? '';
|
$x['bang'] = $x['bang'] ?? '';
|
||||||
$x['visitor'] = $x['visitor'] ?? 'block';
|
$x['visitor'] = $x['visitor'] ?? 'block';
|
||||||
$x['is_owner'] = $x['is_owner'] ?? true;
|
$x['is_owner'] = $x['is_owner'] ?? true;
|
||||||
$x['profile_uid'] = $x['profile_uid'] ?? local_user();
|
$x['profile_uid'] = $x['profile_uid'] ?? local_user();
|
||||||
|
|
||||||
|
|
||||||
$geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
|
$geotag = !empty($x['allow_location']) ? Renderer::replaceMacros(Renderer::getMarkupTemplate('jot_geotag.tpl'), []) : '';
|
||||||
|
|
Loading…
Reference in a new issue