aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-21 22:58:22 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-21 22:58:22 +0100
commitd4fb36fc4a33a22e375db2fe2375b683f07a576c (patch)
tree4c717761b8d2fd3bcdc854015188812d8455672a
parent4a89d1e08f19c86aaafdc42a92afde3f13a1c692 (diff)
Correction symbole Unicode
Correction de https://github.com/marienfressinaud/FreshRSS/commit/305f1436e3ca2907e5234ed77f62348cf4303b79 Contribue à https://github.com/marienfressinaud/FreshRSS/issues/284
-rw-r--r--app/views/helpers/view/normal_view.phtml3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/views/helpers/view/normal_view.phtml b/app/views/helpers/view/normal_view.phtml
index cea29636f..63d97d100 100644
--- a/app/views/helpers/view/normal_view.phtml
+++ b/app/views/helpers/view/normal_view.phtml
@@ -1,5 +1,4 @@
<?php
-
$this->partial ('aside_flux');
$this->partial ('nav_menu');
@@ -42,7 +41,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) {
if ($this->conf->toplineRead ()) {
?><li class="item manage"><?php
?><a class="read" href="<?php echo _url ('entry', 'read', 'id', $item->id (), 'is_read', $item->isRead () ? 0 : 1); ?>"><?php
- echo $item->isRead () ? '☑' : '✉'; ?></a><?php
+ echo $item->isRead () ? '☑' : '☐'; ?></a><?php
?></li><?php
}
if ($this->conf->toplineFavorite ()) {