From 9a2881cd7bd0fb1e10241c2a8776e8ccd12f5e2f Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Thu, 24 Apr 2014 12:10:17 +0100 Subject: [PATCH] Remove comma --- lib/settings-common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/settings-common.php b/lib/settings-common.php index c821ae3..063c1a2 100644 --- a/lib/settings-common.php +++ b/lib/settings-common.php @@ -83,7 +83,7 @@ function xssClean($data,$type) { // === script === if ($type == "script") { - $bad = array("<", ">", "(", ")", "[", "]", "\"", "'", ";",); + $bad = array("<", ">", "(", ")", "[", "]", "\"", "'", ";"); $good = array("<", ">", "(", ")", "[", "]", """, "'", ";"); }