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
path: root/core
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2012-10-12 16:01:47 +0400
committerLukas Reschke <lukas@statuscode.ch>2012-10-12 16:10:11 +0400
commitcdd30216b11c9ce2dbd2f64928b63c24ff6fe26d (patch)
treef321b876e282400e6447255659657f5fae295551 /core
parente5f2d46c6f7329309ec9a6048acdb3f36bcd9a21 (diff)
escapeHTML function
Diffstat (limited to 'core')
-rw-r--r--core/js/js.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/js/js.js b/core/js/js.js
index d87047dbc6b..ba8020c89ed 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -46,6 +46,15 @@ function t(app,text, vars){
}
t.cache={};
+/*
+* Sanitizes a HTML string
+* @param string
+* @return Sanitized string
+*/
+function escapeHTML(s) {
+ return s.toString().split('&').join('&amp;').split('<').join('&lt;').split('"').join('&quot;');
+}
+
/**
* Get the path to download a file
* @param file The filename