commit | af03e056ce1a479dc9f1d6b0a88a6bcb06a31d3c | [log] [tgz] |
---|---|---|
author | Derek Jones <derek.jones@ellislab.com> | Fri Sep 26 15:59:28 2008 +0000 |
committer | Derek Jones <derek.jones@ellislab.com> | Fri Sep 26 15:59:28 2008 +0000 |
tree | c2d336b813cd466beb6b481cde0a7d5004a6d6c8 | |
parent | e07ba013ad4ee70ff26ce6ee081cc0d5396a7e03 [diff] |
fixed decode()'s validation of the string...
diff --git a/system/libraries/Encrypt.php b/system/libraries/Encrypt.php index 656d51b..035ce8f 100644 --- a/system/libraries/Encrypt.php +++ b/system/libraries/Encrypt.php
@@ -141,7 +141,7 @@ { $key = $this->get_key($key); - if ( ! preg_match('/[a-zA-Z0-9\/\+=]/', $string)) + if (preg_match('/[^a-zA-Z0-9\/\+=]/', $string)) { return FALSE; }