From 43a523333190382c359f48134d118d823810b9ef Mon Sep 17 00:00:00 2001 From: nnunn Date: Wed, 28 Oct 2015 14:05:18 -0600 Subject: [PATCH] bug --- system/core/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/core/Input.php b/system/core/Input.php index 2a0c3d8..0809746 100644 --- a/system/core/Input.php +++ b/system/core/Input.php @@ -726,7 +726,7 @@ function _clean_input_data($str) */ function _clean_input_keys($str) { - if ( ! preg_match("/^[~a-z0-9:_\/-\.]+$/i", $str)) + if ( ! preg_match("/^[~a-z0-9:_\/-/.]+$/i", $str)) { exit('Disallowed Key Characters.'); }