Make WordPress Core


Ignore:
Timestamp:
12/06/2007 06:37:30 AM (17 years ago)
Author:
ryan
Message:

Remove unused variables. Props DD32. see #5418

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/install-helper.php

    r6291 r6363  
    1717    }
    1818    //didn't find it try to create it.
    19     $q = $wpdb->query($create_ddl);
     19    $wpdb->query($create_ddl);
    2020    // we cannot directly tell that whether this succeeded!
    2121    foreach ($wpdb->get_col("SHOW TABLES",0) as $table ) {
     
    4242    }
    4343    //didn't find it try to create it.
    44     $q = $wpdb->query($create_ddl);
     44    $wpdb->query($create_ddl);
    4545    // we cannot directly tell that whether this succeeded!
    4646    foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
     
    6464        if ($column == $column_name) {
    6565            //found it try to drop it.
    66             $q = $wpdb->query($drop_ddl);
     66            $wpdb->query($drop_ddl);
    6767            // we cannot directly tell that whether this succeeded!
    6868            foreach ($wpdb->get_col("DESC $table_name",0) as $column ) {
Note: See TracChangeset for help on using the changeset viewer.