This commit is contained in:
wrongecho
2026-01-15 14:49:41 +00:00
parent 512d65c17a
commit 11d6654763
2 changed files with 22 additions and 3 deletions

View File

@@ -508,9 +508,10 @@ ob_start();
<ul>
<?php
while ($row = mysqli_fetch_assoc($sql_asset_history)) {
$asset_history_description = nullable_htmlentities(($row['asset_history_description']));
$asset_history_created_at = nullable_htmlentities(($row['asset_history_created_at']));
echo "<li><small class='text-secondary'>$asset_history_created_at</small><br>$asset_history_description</li>";
$asset_history_status = nullable_htmlentities($row['asset_history_status']);
$asset_history_description = nullable_htmlentities($row['asset_history_description']);
$asset_history_created_at = nullable_htmlentities($row['asset_history_created_at']);
echo "<li>$asset_history_created_at - $asset_history_status <br/>$asset_history_description</li><br/>";
}
?>
</ul>