From ec067d9bb48ea636785690d236c6ff906274c9e4 Mon Sep 17 00:00:00 2001 From: satish <satish.dvnk@vtiger.com> Date: Tue, 21 Jun 2016 16:06:26 +0530 Subject: [PATCH] Revert "Tightened attribute check to cleanup." This reverts commit ff5b9ac4cff1e21d8a8e4152424e71e9c8b8de59. --- include/utils/VtlibUtils.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/utils/VtlibUtils.php b/include/utils/VtlibUtils.php index e44c1c66..57852c7b 100644 --- a/include/utils/VtlibUtils.php +++ b/include/utils/VtlibUtils.php @@ -667,9 +667,8 @@ function purifyHtmlEventAttributes($value){ "onreset|onsearch|onselect|onsubmit|onkeydown|onkeypress|onkeyup|". "onclick|ondblclick|ondrag|ondragend|ondragenter|ondragleave|ondragover|". "ondragstart|ondrop|onmousedown|onmousemove|onmouseout|onmouseover|". - "onmouseup|onmousewheel|onscroll|onwheel|oncopy|oncut|onpaste|onload|". - "onselectionchange|onabort|onselectstart"; - if(preg_match("/\s*(".$htmlEventAttributes.")\s*=/i", $value)) { + "onmouseup|onmousewheel|onscroll|onwheel|oncopy|oncut|onpaste"; + if(preg_match("/\s(".$htmlEventAttributes.")\s*=/i", $value)) { $value = str_replace("=", "=", $value); } return $value; -- GitLab