I installed 6.x-1.x-dev. When I /node/add/multivariate, hit save I get an SQL error:
User warning: Column count doesn't match value count at row 1 query: INSERT INTO multivariate_mutation (nid, mutation_id, count) VALUES (13, 2, 0, 0) in _db_query() (line 147 of /Users/lukasfischer/Sites/drupal6support/includes/database.mysqli.inc).
User warning: Column count doesn't match value count at row 1 query: INSERT INTO multivariate_mutation (nid, mutation_id, count) VALUES (13, 1, 0, 0) in _db_query() (line 147 of /Users/lukasfischer/Sites/drupal6support/includes/database.mysqli.inc).
Comments
Comment #1
lukas.fischer commentedI fixed it by adding "success" to the SQL query:
Line 320 of multivariate.node.php
db_query('INSERT INTO {multivariate_mutation} (nid, mutation_id, count, success)Comment #2
pivica commentedHere is a patch against latest 6.x-1.x-dev version. Note that without this fix multivariate mutation will not work.