* [refac bug #54539] Fix workflowfield options.

This commit is contained in:
wangyidong
2024-08-30 15:22:17 +08:00
committed by 孙广明
parent 8d572e4fad
commit 25857aa0ca
6 changed files with 28 additions and 7 deletions
+4 -1
View File
@@ -1647,7 +1647,10 @@ eof;
*/
public static function convert2Pinyin($items): array
{
if(!is_string(reset($items))) return array();
foreach($items as $item)
{
if(!is_string($items)) return array();
}
global $app;
static $allConverted = array();