diff options
author | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 02:36:37 +0100 |
---|---|---|
committer | Thomas Citharel <tcit@tcit.fr> | 2015-03-08 02:36:37 +0100 |
commit | 512ff18015919bf3119509d1a8b8cf87b3b86f5f (patch) | |
tree | 84e4870a04e121fb909b4f308aeb6bc31d3f0c37 /inc | |
parent | 5e10eee8fc2ccc05f511180a8c92f82de6d293b0 (diff) | |
download | wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.tar.gz wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.tar.zst wallabag-512ff18015919bf3119509d1a8b8cf87b3b86f5f.zip |
implement #11221.9.1alpha1
Diffstat (limited to 'inc')
-rwxr-xr-x | inc/poche/Poche.class.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index c6c91c4a..bf323c49 100755 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -465,9 +465,11 @@ class Poche | |||
465 | Tools::redirect(); | 465 | Tools::redirect(); |
466 | } | 466 | } |
467 | $tags = $this->store->retrieveTagsByEntry($id); | 467 | $tags = $this->store->retrieveTagsByEntry($id); |
468 | $all_tags = $this->store->retrieveAllTags($this->user->getId()); | ||
468 | $tpl_vars = array( | 469 | $tpl_vars = array( |
469 | 'entry_id' => $id, | 470 | 'entry_id' => $id, |
470 | 'tags' => $tags, | 471 | 'tags' => $tags, |
472 | 'alltags' => $all_tags, | ||
471 | 'entry' => $entry, | 473 | 'entry' => $entry, |
472 | ); | 474 | ); |
473 | break; | 475 | break; |