Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Plugins
    In reply to: Democracy Poll

    just change these lines in democracy.php:

    $first_time = $wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyQ'”) != $table_prefix.”democracyQ”;

    to:
    $first_time = strtolower($wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyQ'”)) != strtolower($table_prefix.”democracyQ”);

    and

    $upgrading = !$first_time && $wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyIP'”) != $table_prefix.”democracyIP”;

    to:

    $upgrading = !$first_time && strtolower($wpdb->get_var(“SHOW TABLES LIKE ‘{$table_prefix}democracyIP'”)) != strtolower($table_prefix.”democracyIP”);

Viewing 1 replies (of 1 total)