From: moodler Date: Fri, 6 Oct 2006 06:47:12 +0000 (+0000) Subject: Drop the user_xxx tables after Roles install X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=83ea392ee14631e44b047a46b211b1f4f7c11881;p=moodle.git Drop the user_xxx tables after Roles install --- diff --git a/lib/accesslib.php b/lib/accesslib.php index 262e407583..cc30162655 100755 --- a/lib/accesslib.php +++ b/lib/accesslib.php @@ -1088,7 +1088,10 @@ function moodle_install_roles() { /// Delete the old user tables when we are done - /// XXX TODO + drop_table(new XMLDBTable('user_students')); + drop_table(new XMLDBTable('user_teachers')); + drop_table(new XMLDBTable('user_coursecreators')); + drop_table(new XMLDBTable('user_admins')); }