diff --git a/includes/module.inc b/includes/module.inc
index 63e67801c028f265f085776c8f59a99fdb9d6c1a..a3a1be4829f18e6597a2afbd3a33058994c5ee7e 100644
--- a/includes/module.inc
+++ b/includes/module.inc
@@ -45,7 +45,7 @@ function module_list() {
   static $list;
 
   if (!$list) {
-    $list = array("drupal" => "drupal", "system" => "system", "user" => "user", "watchdog" => "watchdog");
+    $list = array("system" => "system", "user" => "user", "watchdog" => "watchdog");
     $result = db_query("SELECT name, filename FROM system WHERE type = 'module' AND status = '1' ORDER BY name");
     while ($module = db_fetch_object($result)) {
       if (file_exists($module->filename)) {