add missing colon to version title on extension page
This commit is contained in:
parent
52fa31df3e
commit
6b6bea6bcc
1 changed files with 1 additions and 1 deletions
|
@ -107,7 +107,7 @@ class ExtManagerTheme extends Themelet
|
||||||
$html = DIV(
|
$html = DIV(
|
||||||
["style"=>'margin: auto; text-align: left; width: 512px;'],
|
["style"=>'margin: auto; text-align: left; width: 512px;'],
|
||||||
$author,
|
$author,
|
||||||
($info->version ? emptyHTML(BR(), B("Version"), $info->version) : null),
|
($info->version ? emptyHTML(BR(), B("Version: "), $info->version) : null),
|
||||||
($info->link ? emptyHTML(BR(), B("Home Page"), A(["href"=>$info->link], "Link")) : null),
|
($info->link ? emptyHTML(BR(), B("Home Page"), A(["href"=>$info->link], "Link")) : null),
|
||||||
P(rawHTML($info->documentation ?? "(This extension has no documentation)")),
|
P(rawHTML($info->documentation ?? "(This extension has no documentation)")),
|
||||||
// <hr>,
|
// <hr>,
|
||||||
|
|
Reference in a new issue