Victor De la Rocha 16 years ago
parent
commit
3357286bba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      classes/functions.php

+ 1 - 1
classes/functions.php View File

245
  		$handle = opendir($dir);
245
  		$handle = opendir($dir);
246
  		$i=0;
246
  		$i=0;
247
  		while($filename = readdir($handle)) {
247
  		while($filename = readdir($handle)) {
248
- 			if($filename != "." && $filename != "..") {
248
+ 			if($filename != "." && $filename != ".." && $filename != ".svn") {
249
  				$dirs[$i]=trim($filename);
249
  				$dirs[$i]=trim($filename);
250
  				$i++;
250
  				$i++;
251
  			}
251
  			}