diff --git a/core/js/js.js b/core/js/js.js
index d87047dbc6b40b24131af839a7bb6a8fa8d27fcb..ba8020c89edf9b98f2bf839cc08cd4520a167f21 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