Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. //prestashop
  3. //override/classes/Validate.php
  4. class Validate extends ValidateCore {
  5.  
  6.   public static function isStateIsoCode($iso_code)
  7.     {
  8.         return preg_match('/^[a-zA-Z0-9]{1,4}((-)[a-zA-Z0-9]{1,20})?$/', $iso_code);
  9.     }
  10.  
  11. }