From: martin Date: Thu, 29 Nov 2001 12:28:29 +0000 (+0000) Subject: Corrected a type used "=" instead of "==" X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=beef8d0bbf2b89404851b1c6c458204a22ac3494;p=moodle.git Corrected a type used "=" instead of "==" --- diff --git a/admin/index.php b/admin/index.php index 4ec7fc6db4..080d854c3e 100644 --- a/admin/index.php +++ b/admin/index.php @@ -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; }