diff options
-rw-r--r-- | include/functions.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/functions.inc.php b/include/functions.inc.php index b00d856ae..1c106233b 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -201,7 +201,8 @@ function get_dirs($directory) if ($file != '.' and $file != '..' and is_dir($directory.'/'.$file) - and $file != 'CVS') + and $file != 'CVS' + and $file != '.svn') { array_push($sub_dirs, $file); } |