diff options
| author | 2021-10-21 14:21:45 +0200 | |
|---|---|---|
| committer | 2021-10-21 14:21:45 +0200 | |
| commit | 76f722f5fee352a6b51ee4467b9a7ed89fe0a5d6 (patch) | |
| tree | c711cde04b3c14e6febbccb68e3d67c5676f9eff | |
| parent | c5cfb2ac07f039bb7388dca3a4061755c8403fff (diff) | |
Follow up of 3814 (#3910)
* fixed the whitespace in value of username input
* fixed a HTML structure fault
| -rw-r--r-- | app/views/helpers/feed/update.phtml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index 32ad8fd17..50a9ac9cc 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -133,10 +133,11 @@ <label class="group-name" for="http_user_feed<?= $this->feed->id() ?>"><?= _t('sub.feed.auth.username') ?></label> <div class="group-controls"> <input type="text" name="http_user_feed<?= $this->feed->id() ?>" id="http_user_feed<?= $this->feed->id() ?>" class="extend" value="<?= - empty($auth['username']) ? ' ' : $auth['username'] ?>" autocomplete="off" /> + empty($auth['username']) ? '' : $auth['username'] ?>" autocomplete="off" /> <p class="help"><?= _i('help') ?> <?= _t('sub.feed.auth.help') ?></p> </div> - + </div> + <div class="form-group"> <label class="group-name" for="http_pass_feed<?= $this->feed->id() ?>"><?= _t('sub.feed.auth.password') ?></label> <div class="group-controls"> <div class="stick"> |
