Add https:// prefix to vendor website field in vendor details modal

This commit is contained in:
johnnyq 2025-10-25 13:09:25 -04:00
parent 0387e66066
commit 7f6c0346af
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ ob_start();
</div>
<div class="col-sm-6">
<div><strong>Code:</strong> <?php echo getFallback($code); ?></div>
<div><strong>Website:</strong> <?php echo !empty($website) ? '<a href="' . $website . '" target="_blank" class="text-primary">' . $website . '</a>' : '<span class="text-muted">Not Available</span>'; ?></div>
<div><strong>Website:</strong> <?php echo !empty($website) ? '<a href="https://' . $website . '" target="_blank" class="text-primary">' . $website . '</a>' : '<span class="text-muted">Not Available</span>'; ?></div>
</div>
</div>
</div>