Fix credential vars in Services post

This commit is contained in:
johnnyq
2025-03-12 22:10:48 -04:00
parent 15aed891f4
commit 338a08da6c
2 changed files with 10 additions and 11 deletions

View File

@@ -330,7 +330,7 @@ ob_start();
// Showing credentials linked to assets
while ($row = mysqli_fetch_array($sql_assets)) {
if (!empty($row['login_name'])) {
if (!empty($row['credential_name'])) {
echo "<li><a href=\"credentials.php?client_id=$client_id&q=$row[credential_name]\">$row[credential_name]</a></li>";
}
}