diff options
author | Frank Karlitschek <frank@owncloud.org> | 2013-03-04 00:01:26 -0800 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2013-03-04 00:01:26 -0800 |
commit | 36a1bcb73251e9fade635431f29a336ccb231115 (patch) | |
tree | a3ed92ba242d69b84e9d6dd407372ae58cb49759 /settings/js | |
parent | d70912e72b94d63d7d3f42288e2235cee115b8c7 (diff) | |
parent | 0252479e3e803ee88092557589bdce3bc83fd226 (diff) | |
download | nextcloud-server-36a1bcb73251e9fade635431f29a336ccb231115.tar.gz nextcloud-server-36a1bcb73251e9fade635431f29a336ccb231115.zip |
Merge pull request #2061 from owncloud/app-text
Add the description as text and not as html
Diffstat (limited to 'settings/js')
-rw-r--r-- | settings/js/apps.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js index 8c266c66e4b..43013a9e1ec 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -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); |