This repository was archived by the owner on Oct 2, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class Zend_Validate_Iban extends Zend_Validate_Abstract
107
107
'MC ' => '/^MC[0-9]{2}[0-9]{5}[0-9]{5}[A-Z0-9]{11}[0-9]{2}$/ ' ,
108
108
'MD ' => '/^MD[0-9]{2}[A-Z0-9]{20}$/ ' ,
109
109
'ME ' => '/^ME[0-9]{2}[0-9]{3}[0-9]{13}[0-9]{2}$/ ' ,
110
- 'MK ' => '/^MK[0-9]{2}[A-Z ]{3}[A-Z0-9]{10}[0-9]{2}$/ ' ,
110
+ 'MK ' => '/^MK[0-9]{2}[0-9 ]{3}[A-Z0-9]{10}[0-9]{2}$/ ' ,
111
111
'MR ' => '/^MR13[0-9]{5}[0-9]{5}[0-9]{11}[0-9]{2}$/ ' ,
112
112
'MU ' => '/^MU[0-9]{2}[A-Z]{4}[0-9]{2}[0-9]{2}[0-9]{12}[0-9]{3}[A-Z]{2}$/ ' ,
113
113
'MT ' => '/^MT[0-9]{2}[A-Z]{4}[0-9]{5}[A-Z0-9]{18}$/ ' ,
Original file line number Diff line number Diff line change @@ -80,4 +80,13 @@ public function testIbanNotSupported()
80
80
$ validator = new Zend_Validate_Iban ('en_US ' );
81
81
$ this ->assertFalse ($ validator ->isValid ('AT611904300234573201 ' ));
82
82
}
83
+
84
+ /**
85
+ * @group GH-641
86
+ */
87
+ public function testIbanOfMacedonia ()
88
+ {
89
+ $ validator = new Zend_Validate_Iban ();
90
+ $ this ->assertTrue ($ validator ->isValid ('MK07250120000058984 ' ));
91
+ }
83
92
}
You can’t perform that action at this time.
0 commit comments