mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
The resource check makes no sense, and the is_array() check doesn't achieve anything. Drop the former, and replace the latter with a ! check. Discovered while working on GH-18729. Closes GH-18731.
33 lines
648 B
PHP
33 lines
648 B
PHP
--TEST--
|
|
enchant_broker_set_ordering() function
|
|
--CREDITS--
|
|
marcosptf - <marcosptf@yahoo.com.br>
|
|
--EXTENSIONS--
|
|
enchant
|
|
--SKIPIF--
|
|
<?php
|
|
if (!enchant_broker_list_dicts(enchant_broker_init())) {die("skip no dictionary installed on this machine! \n");}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$broker = enchant_broker_init();
|
|
$dicts = enchant_broker_list_dicts($broker);
|
|
$comma = ";";
|
|
|
|
if (is_object($broker)) {
|
|
echo("OK\n");
|
|
if (enchant_broker_set_ordering($broker,$dicts[0]['lang_tag'],$comma)) {
|
|
echo("OK\n");
|
|
} else {
|
|
echo("enchant failed ==>" . $enchantErr);
|
|
}
|
|
} else {
|
|
echo("init failed\n");
|
|
}
|
|
echo "OK\n";
|
|
?>
|
|
--EXPECT--
|
|
OK
|
|
OK
|
|
OK
|