From: stronk7 Date: Sat, 30 Sep 2006 23:09:41 +0000 (+0000) Subject: Drop one more table if present X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f086dd7da1a1f0a14d2c6cfeaa351b5b5f80c985;p=moodle.git Drop one more table if present --- diff --git a/admin/xmldb/actions/test/test.class.php b/admin/xmldb/actions/test/test.class.php index 8a886cf87b..7420637829 100644 --- a/admin/xmldb/actions/test/test.class.php +++ b/admin/xmldb/actions/test/test.class.php @@ -81,6 +81,10 @@ class test extends XMLDBAction { if (table_exists($table)) { $status = drop_table($table, true, false); } + $table = new XMLDBTable ('newnameforthetable'); + if (table_exists($table)) { + $status = drop_table($table, true, false); + } /// 1st test. Complete table creation. $table = new XMLDBTable('testtable');