Fix syntax error in fluxbb.rb (#9727)

This commit is contained in:
Francesco Frassinelli 2020-05-11 17:07:57 +02:00 committed by GitHub
parent 7d3c4a5f13
commit c6f68e4006
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class ImportScripts::FluxBB < ImportScripts::Base
def import_users
puts '', "creating users"
total_count = mysql_query(`SELECT count(*) count FROM #{FLUXBB_PREFIX}users;`).first['count']
total_count = mysql_query("SELECT count(*) count FROM #{FLUXBB_PREFIX}users;").first['count']
batches(BATCH_SIZE) do |offset|
results = mysql_query(