Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2013-03-04 03:19:07 +0400
committerLukas Reschke <lukas@statuscode.ch>2013-03-04 03:19:07 +0400
commit0252479e3e803ee88092557589bdce3bc83fd226 (patch)
tree2221163f535aecd71a230530c30a39321d9d5fef /settings
parentef01e0cdc5459373f253886c5adcd9e09fa003fa (diff)
Add the description as text and not as html
Diffstat (limited to 'settings')
-rw-r--r--settings/js/apps.js2
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);