diff options
| author | 2021-08-22 13:33:58 +0200 | |
|---|---|---|
| committer | 2021-08-22 13:33:58 +0200 | |
| commit | ee2d2db7807065587664d75de2c617f06c8ee568 (patch) | |
| tree | 1ea3ca94b0497504a33cb19c7831630d9a238417 /app/views | |
| parent | 93f759fd4f88cc624b46700f73fb8839e450f820 (diff) | |
Fallback for feeds with empty title (#3787)
* Fallback for feeds with empty title
Address a part of https://github.com/FreshRSS/FreshRSS/issues/3776 for existing feeds
* Also strip www prefix
* Reuse fallback logic
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/helpers/feed/update.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/helpers/feed/update.phtml b/app/views/helpers/feed/update.phtml index 23a0e3ffa..4bc9913c1 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -23,7 +23,7 @@ <div class="form-group"> <label class="group-name" for="name"><?= _t('sub.feed.title') ?></label> <div class="group-controls"> - <input type="text" name="name" id="name" class="extend" value="<?= $this->feed->name() ?>" /> + <input type="text" name="name" id="name" class="extend" value="<?= $this->feed->name(true) ?>" /> </div> </div> <div class="form-group"> |
