diff options
author | Louis Racicot <info@louisracicot.com> | 2013-03-06 15:29:45 +0100 |
---|---|---|
committer | Louis Racicot <info@louisracicot.com> | 2013-03-06 15:29:45 +0100 |
commit | 141e2cb8a20e84a4e521c47edd885102185b2419 (patch) | |
tree | cc4a131d77b9ac1b99234162ee7b1b7219a06481 /system/libraries/Cart.php | |
parent | 2d33e22c0af65963d7617374427814846f419a2e (diff) |
Update Cart.php
Regex were already case sensitive.
Diffstat (limited to 'system/libraries/Cart.php')
-rw-r--r-- | system/libraries/Cart.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cart.php b/system/libraries/Cart.php index 86c11d6f6..84be7fa85 100644 --- a/system/libraries/Cart.php +++ b/system/libraries/Cart.php @@ -51,7 +51,7 @@ class CI_Cart { * * @var string */ - public $product_name_rules = '\.\:\-_ a-zA-ZÀ-ÿ0-9'; + public $product_name_rules = '\.\:\-_ a-z�-�0-9'; /** * only allow safe product names |