diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-23 10:35:09 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2013-12-23 10:35:09 +0100 |
commit | 5cfafc6110985236d9f212533faee79e460bf20d (patch) | |
tree | 439b8e12a2b246702891b1cd97386d205f150a73 /inc/poche/Poche.class.php | |
parent | 1810c13b55b01043620fd81a65ce6e84cccc429c (diff) | |
download | wallabag-5cfafc6110985236d9f212533faee79e460bf20d.tar.gz wallabag-5cfafc6110985236d9f212533faee79e460bf20d.tar.zst wallabag-5cfafc6110985236d9f212533faee79e460bf20d.zip |
[add] check tags tables
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r-- | inc/poche/Poche.class.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 4b26574d..4f70afb7 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -49,6 +49,7 @@ class Poche | |||
49 | if (! $this->store->isInstalled()) { | 49 | if (! $this->store->isInstalled()) { |
50 | $this->install(); | 50 | $this->install(); |
51 | } | 51 | } |
52 | $this->store->checkTags(); | ||
52 | } | 53 | } |
53 | } | 54 | } |
54 | 55 | ||
@@ -659,7 +660,7 @@ class Poche | |||
659 | if(isset($_SERVER['REMOTE_USER'])) { | 660 | if(isset($_SERVER['REMOTE_USER'])) { |
660 | return array($_SERVER['REMOTE_USER'],'http_auth'); | 661 | return array($_SERVER['REMOTE_USER'],'http_auth'); |
661 | } | 662 | } |
662 | 663 | ||
663 | return array(false,false); | 664 | return array(false,false); |
664 | } | 665 | } |
665 | 666 | ||