diff options
| author | 2014-10-24 15:08:57 +0200 | |
|---|---|---|
| committer | 2014-10-24 15:08:57 +0200 | |
| commit | 15316b77f6dd94b46ec8bdac588e273aef259737 (patch) | |
| tree | 1855864df3d98b40804698706eee6529aca3b4a3 /app/views/index | |
| parent | bd5757fff83844fef08fb50d0fce3b1d104728dc (diff) | |
Fix last sections of main.js
See https://github.com/marienfressinaud/FreshRSS/issues/634
Diffstat (limited to 'app/views/index')
| -rw-r--r-- | app/views/index/global.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/index/global.phtml b/app/views/index/global.phtml index 5159882ba..0975a5a00 100644 --- a/app/views/index/global.phtml +++ b/app/views/index/global.phtml @@ -34,9 +34,9 @@ $empty = $feed->nbEntries() === 0 ? ' empty' : ''; $url_base['params']['get'] = 'f_' . $feed->id(); ?> - <li class="item feed<?php echo $error, $empty; ?>" data-unread="<?php echo $feed->nbNotRead(); ?>"> + <li id="f_<?php echo $feed->id(); ?>" class="item feed<?php echo $error, $empty; ?>" data-unread="<?php echo $feed->nbNotRead(); ?>" data-priority="<?php echo $feed->priority(); ?>"> <img class="favicon" src="<?php echo $feed->favicon(); ?>" alt="✇" /> - <a class="item-title" data-unread="<?php echo format_number($feed->nbNotRead()); ?>" data-priority="<?php echo $feed->priority(); ?>" href="<?php echo Minz_Url::display($url_base); ?>"><?php echo $feed->name(); ?></a> + <a class="item-title" data-unread="<?php echo format_number($feed->nbNotRead()); ?>" href="<?php echo Minz_Url::display($url_base); ?>"><?php echo $feed->name(); ?></a> </li> <?php } ?> </ul> |
