From: SourceForge.net <no...@so...> - 2004-10-31 23:56:09
|
Bugs item #1057909, was opened at 2004-11-01 09:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1057909&group_id=8956 Category: None Group: v1.7 Status: Open Resolution: None 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); ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=108956&aid=1057909&group_id=8956 |