Merge pull request #2061 from owncloud/app-text

Add the description as text and not as html
This commit is contained in:
Frank Karlitschek 2013-03-04 00:01:26 -08:00
commit 36a1bcb732
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
page.find('span.version').text('');
}
page.find('span.score').html(app.score);
page.find('p.description').html(app.description);
page.find('p.description').text(app.description);
page.find('img.preview').attr('src', app.preview);
page.find('small.externalapp').attr('style', 'visibility:visible');
page.find('span.author').text(app.author);