Update of /cvsroot/xoops/xoops-current/html/class
In directory usw-pr-cvs1:/tmp/cvs-serv5301
Modified Files:
xoopslists.php
Log Message:
no message
Index: xoopslists.php
===================================================================
RCS file: /cvsroot/xoops/xoops-current/html/class/xoopslists.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** xoopslists.php 18 Sep 2002 11:11:39 -0000 1.4
--- xoopslists.php 26 Sep 2002 09:58:47 -0000 1.5
***************
*** 66,70 ****
$handle=@opendir($dirname);
while ( ($file = readdir($handle)) ) {
! if (!preg_match("/^[.]{1,2}$/",$file)) {
$file = $prefix.$file;
$filelist[$file]=$file;
--- 66,70 ----
$handle=@opendir($dirname);
while ( ($file = readdir($handle)) ) {
! if (!preg_match("/^[.]{1,2}$/",$file) && !is_dir($file)) {
$file = $prefix.$file;
$filelist[$file]=$file;
|