mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
Fixed pages to show multiple authors (bug 332824)
This commit is contained in:
parent
e429bfe18f
commit
9eed7c491d
@ -2,7 +2,10 @@
|
||||
|
||||
<p class="first">
|
||||
<strong><a href="{$config.webpath}/{$app}/{$addon->ID}/">{$addon->Name} {$addon->Version}</a></strong>,
|
||||
by <a href="{$config.webpath}/{$app}/{$addon->UserID}/author/">{$addon->UserName}</a>,
|
||||
by
|
||||
{foreach key=key item=item from=$addon->Authors}
|
||||
<a href="{$config.webpath}/{$app}/{$item.UserID|escape}/author/">{$item.UserName|escape}</a>,
|
||||
{/foreach}
|
||||
released on {$addon->VersionDateAdded|date_format}
|
||||
</p>
|
||||
|
||||
|
@ -2,7 +2,10 @@
|
||||
<h2><strong>{$addon->Name}</strong> » Comments</h2>
|
||||
<p class="first">
|
||||
<strong><a href="{$config.webpath}/{$app}/{$addon->ID}/">{$addon->Name} {$addon->Version}</a></strong>,
|
||||
by <a href="{$config.webpath}/{$app}/{$addon->UserID}/author/">{$addon->UserName}</a>,
|
||||
by
|
||||
{foreach key=key item=item from=$addon->Authors}
|
||||
<a href="{$config.webpath}/{$app}/{$item.UserID|escape}/author/">{$item.UserName|escape}</a>,
|
||||
{/foreach}
|
||||
released on {$addon->VersionDateAdded|date_format}
|
||||
</p>
|
||||
|
||||
|
@ -1,7 +1,10 @@
|
||||
<h2><strong>{$addon->Name}</strong> » Version History</h2>
|
||||
<p class="first">
|
||||
<strong><a href="{$config.webpath}/{$app}/{$addon->ID}/">{$addon->Name} {$addon->Version}</a></strong>,
|
||||
by <a href="{$config.webpath}/{$app}/{$addon->UserID}/author/">{$addon->UserName}</a>,
|
||||
by
|
||||
{foreach key=key item=item from=$addon->Authors}
|
||||
<a href="{$config.webpath}/{$app}/{$item.UserID|escape}/author/">{$item.UserName|escape}</a>,
|
||||
{/foreach}
|
||||
released on {$addon->VersionDateAdded|date_format}
|
||||
</p>
|
||||
|
||||
|
@ -1,7 +1,10 @@
|
||||
<h2><strong>{$addon->Name}</strong> » Previews & Screenshots</h2>
|
||||
<p class="first">
|
||||
<strong><a href="{$config.webpath}/{$app}/{$addon->ID}/">{$addon->Name} {$addon->Version}</a></strong>,
|
||||
by <a href="{$config.webpath}/{$app}/{$addon->UserID}/author/">{$addon->UserName}</a>,
|
||||
by
|
||||
{foreach key=key item=item from=$addon->Authors}
|
||||
<a href="{$config.webpath}/{$app}/{$item.UserID|escape}/author/">{$item.UserName|escape}</a>,
|
||||
{/foreach}
|
||||
released on {$addon->VersionDateAdded|date_format}
|
||||
</p>
|
||||
|
||||
|
@ -123,7 +123,13 @@ Next Page »
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
<p class="first">By <a href="{$config.webpath}/{$app}/{$results[r]->UserID}/author/">{$results[r]->UserName}</a></p>
|
||||
<p class="first">By
|
||||
|
||||
{foreach key=key item=item from=$results[r]->Authors}
|
||||
<a href="{$config.webpath}/{$app}/{$item.UserID|escape}/author/">{$item.UserName|escape}</a>,
|
||||
{/foreach}
|
||||
|
||||
</p>
|
||||
<p class="first">{$results[r]->Description|nl2br}</p>
|
||||
<div class="baseline">Last Update: {$results[r]->DateUpdated|date_format} | Downloads Last 7 Days: {$results[r]->downloadcount} | Total Downloads: {$results[r]->TotalDownloads}</DIV>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user