From f0b4f11590f4091323cfd0006c1e5c55404478ab Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Tue, 7 Jun 2011 13:24:06 +0000 Subject: case insensitive --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it.class') diff --git a/it.class b/it.class index b6cb955..9525e86 100644 --- a/it.class +++ b/it.class @@ -524,7 +524,7 @@ static function _exec_quotevalue($value, $errmsg = "") if (it::match('^-', $result)) it::fatal("leading - in value: " . $errmsg); - return preg_match('#^[-a-z0-9./_:,]+$#', $result) ? $result : escapeshellarg($result); + return preg_match('#^[-a-zA-Z0-9./_:,]+$#', $result) ? $result : escapeshellarg($result); } -- cgit v1.2.3