This commit is contained in:
wclouser%mozilla.com 2006-06-14 20:30:52 +00:00
Родитель 7536e58387
Коммит 3754a64547
2 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -83,6 +83,11 @@ Works with:
</div>
{/if}
{if $addon->History[0].Notes}
<h2>Version Notes</h2>
<p>{$addon->History[0].Notes|strip_tags|nl2br}</p>
{/if}
{if $addon->devcomments}
<h2>Developer Comments</h2>
<p>{$addon->devcomments|strip_tags|nl2br}</p>

Просмотреть файл

@ -91,6 +91,7 @@ class AddOn extends AMO_Object {
$this->getMainPreview();
$this->getUserInfo();
$this->getAuthors();
$this->getHistory();
$this->getAppVersions();
$this->getOsVersions();
$this->installFunc = $this->Type == 'T' ? 'installTheme' : 'install';