diff --git a/releng/org.eclipse.rse.build/archive/index.php b/releng/org.eclipse.rse.build/archive/index.php index 76f73c896a9..1414801a064 100644 --- a/releng/org.eclipse.rse.build/archive/index.php +++ b/releng/org.eclipse.rse.build/archive/index.php @@ -87,7 +87,8 @@ For information about different kinds of builds look $fileCount = $fileCount + 1; } } - $aDropDirectory.closedir(); + //See http://at2.php.net/manual/en/class.dir.php + $aDropDirectory->close(); // Read the count file $countFile = "drops/".$anEntry."/package.count"; $indexFile = "drops/".$anEntry."/index.php"; @@ -143,7 +144,7 @@ For information about different kinds of builds look } } } - // $aDirectory.closedir(); + $aDirectory->close(); ?> diff --git a/releng/org.eclipse.rse.build/downloads/index.php b/releng/org.eclipse.rse.build/downloads/index.php index a258caa04f8..5e2117d4dd4 100644 --- a/releng/org.eclipse.rse.build/downloads/index.php +++ b/releng/org.eclipse.rse.build/downloads/index.php @@ -99,7 +99,8 @@ For access to archived builds, look $fileCount = $fileCount + 1; } } - $aDropDirectory.closedir(); + //See http://at2.php.net/manual/en/class.dir.php + $aDropDirectory->close(); // Read the count file $countFile = "drops/".$anEntry."/package.count"; $indexFile = "drops/".$anEntry."/index.php"; @@ -155,7 +156,7 @@ For access to archived builds, look } } } - // $aDirectory.closedir(); + $aDirectory->close(); ?>