From c4cf16dd3dbc9f9ce72701c35cbd3fdb591f340c Mon Sep 17 00:00:00 2001
From: Kjartan Mannes <kjartan@2.no-reply.drupal.org>
Date: Sun, 9 Mar 2003 17:28:51 +0000
Subject: [PATCH] - Removing drupal module from the always loaded modules
 (again).

---
 includes/module.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/includes/module.inc b/includes/module.inc
index 63e67801c028..a3a1be4829f1 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)) {
-- 
GitLab