diff options
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside.phtml | 6 | ||||
| -rw-r--r-- | app/layout/layout.phtml | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/app/layout/aside.phtml b/app/layout/aside.phtml index 82bd2b051..1432c10ca 100644 --- a/app/layout/aside.phtml +++ b/app/layout/aside.phtml @@ -17,10 +17,6 @@ </li> <?php } ?> - <li> - <a href="<?php echo Url::display (array ('c' => 'feed', 'a' => 'actualize')); ?>">Mettre les flux à jour</a> - </li> - <?php if (login_is_conf ($this->conf)) { ?> <li> <?php if (!is_logged ()) { ?> @@ -47,7 +43,7 @@ <li class="category<?php echo $this->get == $cat->id () ? ' active' : ''; ?>"> <a href="<?php echo Url::display (array ('params' => array ('get' => $cat->id ()))); ?>"> <?php echo $cat->name (); ?> - <span><?php echo $cat->nbFeed (); ?> flux (<?php echo $cat->nbNotRead (); ?>)</span> + <span><?php echo $cat->nbNotRead (); ?> non lu</span> </a> </li> <?php } ?> diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml index de9b76775..5b2adae1e 100644 --- a/app/layout/layout.phtml +++ b/app/layout/layout.phtml @@ -19,9 +19,9 @@ <?php $this->partial ('persona'); ?> <?php if (isset ($this->notification)) { ?> -<div id="notification" class="<?php echo $this->notification['type']; ?>"> -<?php echo $this->notification['content']; ?> -<a class="close" href="">X</a> +<div class="notification <?php echo $this->notification['type']; ?>"> + <?php echo $this->notification['content']; ?> + <a class="close" href="">X</a> </div> <?php } ?> </body> |
