error.php

Code Hygiene Score: 100

Keine Issues gefunden.

Code

<?php
/**
 * Chat Error Partial
 *
 * @var string $error Error message to display
 * @var string|null $details Optional error details
 */
?>
<div class="chat-error">
    <?php if (!empty($details)): ?>
        <strong><?= htmlspecialchars($error) ?></strong>
        <br><small><?= htmlspecialchars($details) ?></small>
    <?php else: ?>
        <?= htmlspecialchars($error) ?>
    <?php endif; ?>
</div>
← Übersicht