If you manually add a user thru drupal admin/user you get this error:
user error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '6' at line 1 query: INSERT INTO citizenspeak_thankyou_options (uid) VALUES 6 in includes/database.mysql.inc on line 66.
line 112 of citizenspeak.user.php
db_query("INSERT INTO {citizenspeak_thankyou_options} (uid) VALUES %d", $user->uid);
should be
db_query("INSERT INTO {citizenspeak_thankyou_options} (uid) VALUES (%d)", $user->uid);
Comments
Comment #1
georgehotelling commentedThanks for trying out the module and letting me know about the problem. The fix is actually already in the CVS repository, you should upgrade your CitizenSpeak module to the latest version.
Comment #2
georgehotelling commented