diff options
author | Urban Müller | 2011-06-07 13:24:06 +0000 |
---|---|---|
committer | Urban Müller | 2011-06-07 13:24:06 +0000 |
commit | f0b4f11590f4091323cfd0006c1e5c55404478ab (patch) | |
tree | 7d94d95d4429a979583ffa7d5a085aac165f07c3 /it.class | |
parent | 2a893619df343f81213f0aad39cafbab104ecca7 (diff) | |
download | itools-f0b4f11590f4091323cfd0006c1e5c55404478ab.tar.gz itools-f0b4f11590f4091323cfd0006c1e5c55404478ab.tar.bz2 itools-f0b4f11590f4091323cfd0006c1e5c55404478ab.zip |
case insensitive
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |