diff options
| author | 2015-08-21 13:06:33 +0200 | |
|---|---|---|
| committer | 2015-08-21 13:06:33 +0200 | |
| commit | a63dadd91bcb23f2b9d2ecac9bef76265b8d9f48 (patch) | |
| tree | b176566246058c5663a7abc0f236f7bba3f4a678 /app | |
| parent | 422a9e161b81a4ecf7ee9362a9e28d194dfef5ac (diff) | |
| parent | c75863ff0f5a464cabe0bbcc79526a1362235427 (diff) | |
Merge pull request #954 from Alkarex/FeedIdUi
UI: Add feed ID in article container
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/index/normal.phtml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/views/index/normal.phtml b/app/views/index/normal.phtml index f71abf158..91ebcebd3 100644 --- a/app/views/index/normal.phtml +++ b/app/views/index/normal.phtml @@ -56,7 +56,11 @@ if (!empty($this->entries)) { ?></div><?php $display_others = false; } - ?><div class="flux<?php echo !$this->entry->isRead() ? ' not_read' : ''; ?><?php echo $this->entry->isFavorite() ? ' favorite' : ''; ?>" id="flux_<?php echo $this->entry->id(); ?>"><?php + ?><div class="flux<?php echo !$this->entry->isRead() ? ' not_read' : ''; + ?><?php echo $this->entry->isFavorite() ? ' favorite' : ''; + ?>" id="flux_<?php echo $this->entry->id(); + ?>" data-feed="<?php echo $this->feed->id(); + ?>"><?php $this->renderHelper('index/normal/entry_header'); |
