From f2e0049dec61be0a265f5623e1111b3c05324ff3 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 27 Aug 2006 08:58:09 +0000 Subject: [PATCH] Just remove one condition previously checked. --- admin/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/index.php b/admin/index.php index 00af173189..71e34d5229 100644 --- a/admin/index.php +++ b/admin/index.php @@ -193,7 +193,7 @@ /// Launch the old main upgrade $status = main_upgrade($CFG->version); /// If succesful and exists launch the new main upgrade (XMLDB), called xmldb_main_upgrade - if ($status && $CFG->xmldb_enabled && function_exists('xmldb_main_upgrade')) { + if ($status && function_exists('xmldb_main_upgrade')) { $status = xmldb_main_upgrade($CFG->version); } /// If successful, continue upgrading roles and setting everything properly -- 2.39.5