* [bug] fix equal in php72.

This commit is contained in:
qixinzhi
2024-10-29 09:45:50 +08:00
committed by 朱金勇
parent b80270af66
commit 5f29a422ac
+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++)
{