Skip to content

Commit

Permalink
Merge pull request #491 from nextcloud/bugfix/noid/fix-activity-in-fi…
Browse files Browse the repository at this point in the history
…les-sidebar

Fix activity tab in the files sidebar
  • Loading branch information
nickvergessen authored Sep 10, 2020
2 parents 7907cd1 + 720cd6b commit dfbdf61
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions js/activitytabview.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@
*
*/

function escapeHTML(text) {
return text.toString()
.split('&').join('&')
.split('<').join('&lt;')
.split('>').join('&gt;')
.split('"').join('&quot;')
.split('\'').join('&#039;')
}

(function() {

/**
Expand Down

0 comments on commit dfbdf61

Please sign in to comment.