1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-01-14 08:26:43 +01:00

fix minore

This commit is contained in:
Pek5892 2023-10-27 17:15:08 +02:00
parent e651812528
commit 51ee3c48db

View File

@ -148,8 +148,8 @@ echo '
$class = ''; $class = '';
$icon = 'plus'; $icon = 'plus';
$checks_not_verified = $checks->where('checked_at', null)->first(); $checks_not_verified = $checks->where('checked_at', null)->first();
$type = sizeof($checks_not_verified) ? 'warning' : 'success'; $type = ($checks_not_verified) ? 'warning' : 'success';
$icon2 = sizeof($checks_not_verified) ? 'clock-o' : 'check'; $icon2 = ($checks_not_verified) ? 'clock-o' : 'check';
} }
echo ' echo '
<tr> <tr>