Remove legacy comments

This commit is contained in:
Philipp 2022-11-16 08:56:19 +01:00
parent 5dc9319bb2
commit e7fd4a4cd1
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 3 additions and 3 deletions

View File

@ -94,14 +94,14 @@ class Edit extends BaseModule
$this->errorExit($this->t('Post not found.'), HTTPException\BadRequestException::class); $this->errorExit($this->t('Post not found.'), HTTPException\BadRequestException::class);
} }
$user = User::getById($this->session->getLocalUserId()); $user = User::getById($this->session->getLocalUserId());
$output = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [ $output = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
'$title' => $this->t('Edit post'), '$title' => $this->t('Edit post'),
]); ]);
$this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('jot-header.tpl'), [ $this->page['htmlhead'] .= Renderer::replaceMacros(Renderer::getMarkupTemplate('jot-header.tpl'), [
'$ispublic' => '&nbsp;', // $this->t('Visible to <strong>everybody</strong>'), '$ispublic' => '&nbsp;',
'$nickname' => $this->app->getLoggedInUserNickname(), '$nickname' => $this->app->getLoggedInUserNickname(),
'$is_mobile' => $this->mode->isMobile(), '$is_mobile' => $this->mode->isMobile(),
]); ]);
@ -153,7 +153,7 @@ class Edit extends BaseModule
'$placeholdercategory' => (Feature::isEnabled($this->session->getLocalUserId(), 'categories') ? $this->t("Categories \x28comma-separated list\x29") : ''), '$placeholdercategory' => (Feature::isEnabled($this->session->getLocalUserId(), 'categories') ? $this->t("Categories \x28comma-separated list\x29") : ''),
'$emtitle' => $this->t('Example: bob@example.com, mary@example.com'), '$emtitle' => $this->t('Example: bob@example.com, mary@example.com'),
'$lockstate' => $lockstate, '$lockstate' => $lockstate,
'$acl' => '', // populate_acl((($group) ? $group_acl : $a->user)), '$acl' => '',
'$bang' => ($lockstate === 'lock' ? '!' : ''), '$bang' => ($lockstate === 'lock' ? '!' : ''),
'$profile_uid' => $this->session->getLocalUserId(), '$profile_uid' => $this->session->getLocalUserId(),
'$preview' => $this->t('Preview'), '$preview' => $this->t('Preview'),