Fix syntax error in fluxbb.rb (#9727)
This commit is contained in:
parent
7d3c4a5f13
commit
c6f68e4006
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue