Changeset 6363 for trunk/wp-admin/install-helper.php
- Timestamp:
- 12/06/2007 06:37:30 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/install-helper.php
r6291 r6363 17 17 } 18 18 //didn't find it try to create it. 19 $ q = $wpdb->query($create_ddl);19 $wpdb->query($create_ddl); 20 20 // we cannot directly tell that whether this succeeded! 21 21 foreach ($wpdb->get_col("SHOW TABLES",0) as $table ) { … … 42 42 } 43 43 //didn't find it try to create it. 44 $ q = $wpdb->query($create_ddl);44 $wpdb->query($create_ddl); 45 45 // we cannot directly tell that whether this succeeded! 46 46 foreach ($wpdb->get_col("DESC $table_name",0) as $column ) { … … 64 64 if ($column == $column_name) { 65 65 //found it try to drop it. 66 $ q = $wpdb->query($drop_ddl);66 $wpdb->query($drop_ddl); 67 67 // we cannot directly tell that whether this succeeded! 68 68 foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
Note: See TracChangeset
for help on using the changeset viewer.