mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 23:34:27 +02:00
Fix support for multiple authors and maintainers
This commit is contained in:
parent
a80bf0ddf1
commit
b0e3f1f64d
4 changed files with 55 additions and 35 deletions
|
@ -94,6 +94,8 @@ class Details extends BaseAdmin
|
|||
|
||||
$t = Renderer::getMarkupTemplate('admin/addons/details.tpl');
|
||||
|
||||
throw new \Exception('ff');
|
||||
|
||||
return Renderer::replaceMacros($t, [
|
||||
'$title' => DI::l10n()->t('Administration'),
|
||||
'$page' => DI::l10n()->t('Addons'),
|
||||
|
@ -107,8 +109,8 @@ class Details extends BaseAdmin
|
|||
'name' => $addonInfo->getName(),
|
||||
'version' => $addonInfo->getVersion(),
|
||||
'description' => $addonInfo->getDescription(),
|
||||
'author' => $addonInfo->getAuthor(),
|
||||
'maintainer' => $addonInfo->getMaintainer(),
|
||||
'author' => $addonInfo->getAuthors(),
|
||||
'maintainer' => $addonInfo->getMaintainers(),
|
||||
],
|
||||
'$str_author' => DI::l10n()->t('Author: '),
|
||||
'$str_maintainer' => DI::l10n()->t('Maintainer: '),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue