diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:01 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:52:01 +0100 |
commit | f14807de06929486de6e2b64cd30e5c53978d8c0 (patch) | |
tree | b42557587671806e22666336f1a346914ae43aac /inc/poche/Poche.class.php | |
parent | ed2853564e3db719abf5378b31fe5067dad513c4 (diff) | |
download | wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.tar.gz wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.tar.zst wallabag-f14807de06929486de6e2b64cd30e5c53978d8c0.zip |
[add] mark all as read #385
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r-- | inc/poche/Poche.class.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 9345d1c1..a786c8df 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -434,6 +434,13 @@ class Poche | |||
434 | Tools::redirect(); | 434 | Tools::redirect(); |
435 | } | 435 | } |
436 | break; | 436 | break; |
437 | case 'archive_all' : | ||
438 | $this->store->archiveAll($this->user->getId()); | ||
439 | Tools::logm('archive all links'); | ||
440 | if (!$import) { | ||
441 | Tools::redirect(); | ||
442 | } | ||
443 | break; | ||
437 | case 'add_tag' : | 444 | case 'add_tag' : |
438 | $tags = explode(',', $_POST['value']); | 445 | $tags = explode(',', $_POST['value']); |
439 | $entry_id = $_POST['entry_id']; | 446 | $entry_id = $_POST['entry_id']; |