File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ PHP NEWS
104
104
. Fixed bug #74433 (wrong reflection for Normalizer methods). (villfa)
105
105
. Fixed bug #74439 (wrong reflection for Locale methods). (villfa)
106
106
. Fixed bug #74468 (wrong reflection on Collator::sortWithSortKeys). (villfa)
107
+ . Fixed bug #63790 (test using Spoofchecker which may be unavailable). (Sara)
107
108
108
109
- Mbstring:
109
110
. Implemented request #66024 (mb_chr() and mb_ord()). (Masakielastic, Yasuo)
Original file line number Diff line number Diff line change @@ -4,6 +4,8 @@ Bug #62915: cloning of several classes is defective
4
4
<?php
5
5
if (!extension_loaded ('intl ' ))
6
6
die ('skip intl extension not enabled ' );
7
+ if (!class_exists ('Spoofchecker ' ))
8
+ die ('skip intl extension does not have spoof checker ' );
7
9
--FILE --
8
10
<?php
9
11
class A extends IntlDateFormatter {
You can’t perform that action at this time.
0 commit comments