From: SourceForge.net <no...@so...> - 2004-11-01 18:52:25
|
Bugs item #1057909, was opened at 2004-10-31 18:56 Message generated for change (Comment added) made by greggmc You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1057909&group_id=8956 Category: None Group: v1.7 >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Paul Jackson (beachbum_boy) Assigned to: Nobody/Anonymous (nobody) Summary: Checkbox questions not recording '!other' results Initial Comment: Problem: Data from checkbox '!other' questions is not recorded in database. This error doesn't exist in v1.6, it has been introduced in 1.7, basically a line of code has been lost. Fix: Line 236 in espresponse.inc is: $sql = "INSERT INTO ".$GLOBALS['ESPCONFIG'] ['response_other_table']." ( response_id,question_id,choice_id,response ) VALUES ( ${rid},${qid},${cid},${other} )"; This SQL is never executed, need to add line below 236: $result = mysql_query($sql); ---------------------------------------------------------------------- >Comment By: Matthew Gregg (greggmc) Date: 2004-11-01 13:52 Message: Logged In: YES user_id=14116 Was fixed in CVS just last week :-) ---------------------------------------------------------------------- Comment By: Matthew Gregg (greggmc) Date: 2004-11-01 13:52 Message: Logged In: YES user_id=14116 Fixed in CVS. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1057909&group_id=8956 |