diff options
| author | Freya Murphy <freya@freyacat.org> | 2026-02-24 04:20:11 +0000 |
|---|---|---|
| committer | Freya Murphy <freya@freyacat.org> | 2026-02-24 04:20:11 +0000 |
| commit | d817c87e2d8862ce02bc1e5643b0538e0767b05f (patch) | |
| tree | 0a6ee90d75b6bb33450eee1379218e85622c9600 /src/web/_views/comments.php | |
| parent | fix date, how did this happen? (diff) | |
| download | website-d817c87e2d8862ce02bc1e5643b0538e0767b05f.tar.gz website-d817c87e2d8862ce02bc1e5643b0538e0767b05f.tar.bz2 website-d817c87e2d8862ce02bc1e5643b0538e0767b05f.zip | |
fix w3c errors
Diffstat (limited to 'src/web/_views/comments.php')
| -rw-r--r-- | src/web/_views/comments.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/web/_views/comments.php b/src/web/_views/comments.php index 01b1619..9762def 100644 --- a/src/web/_views/comments.php +++ b/src/web/_views/comments.php @@ -7,7 +7,7 @@ echo '<div class="comment">'; echo '<h3 class="header">' . esc($comment['author']) . '</h3>'; - echo '<div class="span" class="date">' . $date . '</div>'; + echo '<div class="span date">' . $date . '</div>'; echo '<p class="content">' . esc($comment['content']) . '</p>'; echo '</div>'; } @@ -35,7 +35,7 @@ class="hidden" name="ref" value="<?=esc(base64_encode($ref))?>"> - <div><input + <input type="hidden" class="hidden" name="page" |