diff options
author | Thomas Lange <code@nerdmind.de> | 2021-07-28 14:43:47 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-07-28 14:43:47 +0200 |
commit | 1017a99e81d0445a8614917a1798bbd02d88d14e (patch) | |
tree | e38c8be0d576c5508fe0828456e2967aaea088fa /theme/admin/html/database.php | |
parent | c6ca335253153f2c48da1474712f82ea31526d10 (diff) | |
download | blog-1017a99e81d0445a8614917a1798bbd02d88d14e.tar.gz blog-1017a99e81d0445a8614917a1798bbd02d88d14e.tar.xz blog-1017a99e81d0445a8614917a1798bbd02d88d14e.zip |
Add "required" attribute to required form fields
Diffstat (limited to 'theme/admin/html/database.php')
-rw-r--r-- | theme/admin/html/database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/admin/html/database.php b/theme/admin/html/database.php index 62afefa..1ba7adc 100644 --- a/theme/admin/html/database.php +++ b/theme/admin/html/database.php @@ -16,7 +16,7 @@ <input type="hidden" name="token" value="<?=$FORM['TOKEN']?>" /> <div class="form-border-box"> - <textarea id="content-editor" placeholder="<?=$Language->text('database_warning')?>" name="command" autofocus><?=escapeHTML($FORM['COMMAND'])?></textarea> + <textarea id="content-editor" placeholder="<?=$Language->text('database_warning')?>" name="command" required autofocus><?=escapeHTML($FORM['COMMAND'])?></textarea> </div> <?php if($FORM['RESULT']): ?> |