* [bug] fix equal in php72.

This commit is contained in:
qixinzhi
2024-10-28 16:37:31 +08:00
committed by 宋辰轩
parent c89949c3fe
commit 15abe29625
+1 -1
View File
@@ -1991,7 +1991,7 @@ class biModel extends model
$totalLang = $this->lang->pivot->total;
$totalColspan = 0;
foreach($rowData as $value) if($value == $totalLang) $totalColspan++;
foreach($rowData as $value) if($value === $totalLang) $totalColspan++;
for($i = 0; $i < count($rowData); $i++)
{