diff options
author | NumEricR <eric.github@gmail.com> | 2013-10-05 10:52:08 +0200 |
---|---|---|
committer | NumEricR <eric.github@gmail.com> | 2013-10-05 10:52:08 +0200 |
commit | 89812ec81cf77af32942d151372a8667c716fe30 (patch) | |
tree | aeb351fd47a0a246e6a09f9205328ff48553e22a /inc/poche/Poche.class.php | |
parent | d47d2533accb30a69fbbb964f63793b821300974 (diff) | |
download | wallabag-89812ec81cf77af32942d151372a8667c716fe30.tar.gz wallabag-89812ec81cf77af32942d151372a8667c716fe30.tar.zst wallabag-89812ec81cf77af32942d151372a8667c716fe30.zip |
Remove useless filter on .git folder
Diffstat (limited to 'inc/poche/Poche.class.php')
-rw-r--r-- | inc/poche/Poche.class.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php index 1ba8e7c1..1a655386 100644 --- a/inc/poche/Poche.class.php +++ b/inc/poche/Poche.class.php | |||
@@ -258,7 +258,7 @@ class Poche | |||
258 | while (($theme = readdir($handle)) !== false) { | 258 | while (($theme = readdir($handle)) !== false) { |
259 | # Themes are stored in a directory, so all directory names are themes | 259 | # Themes are stored in a directory, so all directory names are themes |
260 | # @todo move theme installation data to database | 260 | # @todo move theme installation data to database |
261 | if (! is_dir(THEME . '/' . $theme) || in_array($theme, array('..', '.', '.git'))) { | 261 | if (! is_dir(THEME . '/' . $theme) || in_array($theme, array('..', '.'))) { |
262 | continue; | 262 | continue; |
263 | } | 263 | } |
264 | 264 | ||