Skip to content

Commit

Permalink
Just remove one condition previously checked.
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Aug 27, 2006
1 parent b8851b8 commit f2e0049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/index.php
Expand Up @@ -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
Expand Down

0 comments on commit f2e0049

Please sign in to comment.