FIxed a typo from my last checkin

This commit is contained in:
moodler 2005-03-12 06:24:57 +00:00
parent 0219eb2bfa
commit 1831d8b954

View File

@ -681,7 +681,7 @@ function displaydir ($wdir) {
$fullpath = $basedir.$wdir;
$directory = opendir($fullpath); // Find all files
while (false !== ($file = readdir($currdir))) {
while (false !== ($file = readdir($directory))) {
if ($file == "." || $file == "..") {
continue;
}