diff options
| author | 2014-09-24 14:14:33 +0200 | |
|---|---|---|
| committer | 2014-09-24 14:14:33 +0200 | |
| commit | e6a25f78f5abaea4dc0bfeba2bbb0a90119c624b (patch) | |
| tree | f526327ec220ee0e1b98ace0d15783c6c862fada /app/layout/nav_menu.phtml | |
| parent | bcb1e3750a9eee51070d602cc77def06f7f071c9 (diff) | |
Fix bug mark as read a complete feed
Related to https://github.com/marienfressinaud/FreshRSS/issues/599
Fix https://github.com/marienfressinaud/FreshRSS/issues/633
Diffstat (limited to 'app/layout/nav_menu.phtml')
| -rw-r--r-- | app/layout/nav_menu.phtml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index 03f496d1f..af2323325 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -187,12 +187,12 @@ Minz_Session::_param('markReadUrl', $markReadUrl); ?> - <form id="mark-read" method="post" style="display: none"></form> + <form id="mark-read-menu" method="post" style="display: none"></form> <div class="stick" id="nav_menu_read_all"> <?php $confirm = $this->conf->reading_confirm ? 'confirm' : ''; ?> <button class="read_all btn <?php echo $confirm; ?>" - form="mark-read" + form="mark-read-menu" formaction="<?php echo $markReadUrl; ?>" type="submit"><?php echo _t('mark_read'); ?></button> @@ -205,7 +205,7 @@ <li class="item"> <button class="as-link <?php echo $confirm; ?>" - form="mark-read" + form="mark-read-menu" formaction="<?php echo $markReadUrl; ?>" type="submit"><?php echo $string_mark; ?></button> </li> @@ -218,13 +218,13 @@ ?> <li class="item"> <button class="as-link <?php echo $confirm; ?>" - form="mark-read" + form="mark-read-menu" formaction="<?php echo Minz_Url::display($mark_before_today); ?>" type="submit"><?php echo _t('before_one_day'); ?></button> </li> <li class="item"> <button class="as-link <?php echo $confirm; ?>" - form="mark-read" + form="mark-read-menu" formaction="<?php echo Minz_Url::display($mark_before_one_week); ?>" type="submit"><?php echo _t('before_one_week'); ?></button> </li> |
