diff options
| author | 2019-05-30 12:26:24 +0200 | |
|---|---|---|
| committer | 2019-05-30 12:26:24 +0200 | |
| commit | 06a48d84b6a181a8336741c4786031cb8a491d42 (patch) | |
| tree | 725425fd360d05c6655be4d79affd8cda96e980d | |
| parent | 987d71fe9b0824f5f7ae50c23d210b557bae843b (diff) | |
| parent | e20161089e2baa8cbd7c6f3d6b30fe6e83fad528 (diff) | |
Merge pull request #2399 from aledeg/fix/filter-action
Fix filter action display
| -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 be8034c0d..d6b9885f5 100644 --- a/app/views/helpers/feed/update.phtml +++ b/app/views/helpers/feed/update.phtml @@ -240,7 +240,7 @@ <div class="group-controls"> <textarea name="filteractions_read" id="filteractions_read"><?php foreach ($this->feed->filtersAction('read') as $filterRead) { - echo htmlspecialchars($filterRead->getRawInput(), ENT_NOQUOTES, 'UTF-8'), "\n\n"; + echo htmlspecialchars($filterRead->getRawInput(), ENT_NOQUOTES, 'UTF-8'), PHP_EOL; } ?></textarea> <?php echo _i('help'); ?> <?php echo _t('sub.feed.filteractions.help'); ?> |
