Corrected a type used "=" instead of "=="

This commit is contained in:
martin
2001-11-29 12:28:29 +00:00
parent 7ea4679b24
commit beef8d0bbf
+1 -1
View File
@@ -22,7 +22,7 @@
// Find and check all modules and load them up.
$dir = opendir("$CFG->dirroot/mod");
while ($mod = readdir($dir)) {
if ($mod == "." || $mod == ".." || $mod = "CVS") {
if ($mod == "." || $mod == ".." || $mod == "CVS") {
continue;
}