diff options
| author | 2013-07-26 18:23:17 +0200 | |
|---|---|---|
| committer | 2013-07-26 18:23:17 +0200 | |
| commit | e22ebc735f7436b03e3f40508b07a3f1eaeb0516 (patch) | |
| tree | 9060162f8e3172d9c6354b370ca75f99a0f9a6d3 /app | |
| parent | 93c74650bed4e274416e1381b815e473ce1046ef (diff) | |
Fix issue #108 : bug catégories non repliées
La colonne des catégories se replie désormais même lorsqu'il n'y a aucun
article à afficher
Diffstat (limited to 'app')
| -rw-r--r-- | app/views/helpers/normal_view.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/reader_view.phtml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/normal_view.phtml b/app/views/helpers/normal_view.phtml index 126fa5a78..4f08bea7f 100644 --- a/app/views/helpers/normal_view.phtml +++ b/app/views/helpers/normal_view.phtml @@ -125,7 +125,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) { <?php $this->partial ('nav_entries'); ?> <?php } else { ?> -<div class="alert alert-warn"> +<div id="stream" class="alert alert-warn normal"> <span class="alert-head"><?php echo Translate::t ('no_feed_to_display'); ?></span> </div> <?php } ?>
\ No newline at end of file diff --git a/app/views/helpers/reader_view.phtml b/app/views/helpers/reader_view.phtml index cdca393b9..46a65a4e3 100644 --- a/app/views/helpers/reader_view.phtml +++ b/app/views/helpers/reader_view.phtml @@ -39,7 +39,7 @@ if (isset ($this->entryPaginator) && !$this->entryPaginator->isEmpty ()) { </div> <?php } else { ?> -<div class="alert alert-warn"> +<div id="stream" class="alert alert-warn reader"> <span class="alert-head"><?php echo Translate::t ('no_feed_to_display'); ?></span> </div> <?php } ?>
\ No newline at end of file |
