+ bugModel: fix error the columns of datatable are all fixed.

This commit is contained in:
liugang
2023-08-30 13:56:00 +08:00
parent 9331a46225
commit 88c6baf3fe
+5
View File
@@ -3908,6 +3908,11 @@ class bugModel extends model
}
}
foreach($setting as $key => $set)
{
if(isset($set->fixed) && $set->fixed != 'left' && $set->fixed != 'right') unset($set->fixed);
}
usort($setting, array('datatableModel', 'sortCols'));
return $setting;