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/migration.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/migration.php')
-rw-r--r-- | theme/admin/html/migration.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/theme/admin/html/migration.php b/theme/admin/html/migration.php index 082b95b..921b006 100644 --- a/theme/admin/html/migration.php +++ b/theme/admin/html/migration.php @@ -2,17 +2,17 @@ <!DOCTYPE html> <html lang="<?=$BLOGMETA['LANG']?>"> <head> - <meta charset="UTF-8" /> - <meta name="referrer" content="origin-when-crossorigin" /> - <meta name="viewport" content="width=device-width, initial-scale=1" /> - <link rel="stylesheet" href="<?=Application::getTemplateURL("rsrc/css/$theme.css")?>" /> + <meta charset="UTF-8"> + <meta name="referrer" content="origin-when-crossorigin"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="<?=Application::getTemplateURL("rsrc/css/$theme.css")?>"> <title><?=$Language->text('maintenance_mode')?></title> </head> <body> <header id="main-header"> <div class="header-line background"> <div class="header-content"> - <img id="header-logo" src="<?=Application::getTemplateURL('rsrc/icon-public-domain.svg')?>" alt="Administration" /> + <img id="header-logo" src="<?=Application::getTemplateURL('rsrc/icon-public-domain.svg')?>" alt="Administration"> <div id="header-text"><?=escapeHTML($BLOGMETA['NAME'])?></div> <div id="header-desc"><?=$Language->text('maintenance_mode')?></div> </div> @@ -45,7 +45,7 @@ $codebase_schema = $MIGRATION['SCHEMA_VERSION']['CODEBASE']; <?php endforeach ?> </ul> <input type="hidden" name="token" value="<?=Application::getSecurityToken()?>" ?> - <input type="submit" name="run" value="<?=$Language->text('migration_submit')?>" id="delete-button" /> + <input type="submit" name="run" value="<?=$Language->text('migration_submit')?>" id="delete-button"> </form> <?php endif ?> </main> |