diff options
author | Thomas Lange <code@nerdmind.de> | 2024-01-23 20:22:35 +0100 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2024-01-23 20:22:35 +0100 |
commit | 53c035918a4f34b826728e06d9b77e4bcb440517 (patch) | |
tree | 468f763d1fc4237e77b0c85771c20f69b3ac0ed2 /theme/admin/html/user/item.php | |
parent | 09f52cfcc8ced8bed60e5c1702e6f35cf3fe1f29 (diff) | |
download | blog-53c035918a4f34b826728e06d9b77e4bcb440517.tar.gz blog-53c035918a4f34b826728e06d9b77e4bcb440517.tar.xz blog-53c035918a4f34b826728e06d9b77e4bcb440517.zip |
Remove trailing slash on void elements
The trailing slash on void elements (self-closing tags) doesn't have any
effect, isn't required by HTML5 and it is recommended to not use it.
Diffstat (limited to 'theme/admin/html/user/item.php')
-rw-r--r-- | theme/admin/html/user/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/admin/html/user/item.php b/theme/admin/html/user/item.php index 3a9ecb6..bb8c48a 100644 --- a/theme/admin/html/user/item.php +++ b/theme/admin/html/user/item.php @@ -21,7 +21,7 @@ </header> <blockquote cite="<?=$USER['URL']?>"> <?php if(isset($USER['FILE']['LIST'][0])): ?> - <img class="item-image" src="<?=$USER['FILE']['LIST'][0]?>" alt="" /> + <img class="item-image" src="<?=$USER['FILE']['LIST'][0]?>" alt=""> <?php endif; ?> <p><?=excerpt($USER['BODY']['HTML']())?></p> </blockquote> |