Skip to content

Commit

Permalink
add a space behind list items to separate the names of the plugins wi…
Browse files Browse the repository at this point in the history
…th same author
  • Loading branch information
Klap-in committed Nov 21, 2023
1 parent 4d75850 commit 579721f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion syntax/entry.php
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ protected function showAuthorInfo($R, $data, $rel)
$itr = 0;
$R->doc .= '<ul>';
while ($itr < count($rel['sameauthor']) && $itr < $maxShow) {
$R->doc .= '<li>' . $this->hlp->pluginlink($R, $rel['sameauthor'][$itr++]) . '</li>';
$R->doc .= '<li>' . $this->hlp->pluginlink($R, $rel['sameauthor'][$itr++]) . '</li> ';
}
if (count($rel['sameauthor']) > $maxShow) {
$remainingExtensions = count($rel['sameauthor']) - $maxShow;
Expand Down

0 comments on commit 579721f

Please sign in to comment.