diff options
| author | 2023-11-04 03:16:21 +0100 | |
|---|---|---|
| committer | 2023-11-04 03:16:21 +0100 | |
| commit | d66dff402990eea46f2d8d09560abf5af510af0b (patch) | |
| tree | fe7cf6b92bb906cf4e94e2c13af552ed179db798 /app | |
| parent | 8b2f7848eb1054ee26048e3ffe76855410286407 (diff) | |
Fix: inputs in add a new feed (#5813)
Co-authored-by: math-gh <>
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/subscription/add.phtml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/app/views/subscription/add.phtml b/app/views/subscription/add.phtml index afc904916..1f07e2931 100644 --- a/app/views/subscription/add.phtml +++ b/app/views/subscription/add.phtml @@ -212,9 +212,7 @@ <div class="form-group"> <label class="group-name" for="curl_params_useragent"><?= _t('sub.feed.useragent') ?></label> <div class="group-controls"> - <div class="stick"> - <input type="text" name="curl_params_useragent" id="curl_params_useragent" value="" placeholder="<?= _t('gen.short.blank_to_disable') ?>" /> - </div> + <input type="text" name="curl_params_useragent" id="curl_params_useragent" value="" placeholder="<?= _t('gen.short.blank_to_disable') ?>" /> <p class="help"><?= _i('help') ?> <?= _t('sub.feed.useragent_help') ?></p> </div> </div> @@ -228,9 +226,7 @@ } ?> </select> - <div class="stick"> - <input type="text" name="curl_params" id="curl_params" value="" placeholder="<?= _t('gen.short.blank_to_disable') ?>" /> - </div> + <input type="text" name="curl_params" id="curl_params" value="" placeholder="<?= _t('gen.short.blank_to_disable') ?>" /> <p class="help"><?= _i('help') ?> <?= _t('sub.feed.proxy_help') ?></p> </div> </div> |
