Support Forums

Questions about surveying? How does this thing work? We're here to help!

The Forums are now closed, because much of the older info is out of date.

Check out our Knowledge Base, ask a support question: Support.SurveyGizmo.com or ask a sales question with our Sales Contact Form.

Current User: Guest

typo in api

Topic Locked
UserPost

8:48
June 6, 2008


dmclark

Member

posts 22

in survey.php

function getSurveyList($status=null,$dateRange=null,$folder=null){
$params = array(’status’=>$status
‘DateRange’=$dateRange,
‘folder’ => $folder);
return $this->_exec_command(‘GETSURVEYLIST’,$params);
}

should be

function getSurveyList($status=null,$dateRange=null,$folder=null){
$params = array(’status’=>$status,
‘DateRange’=>$dateRange,
‘folder’ => $folder);
return $this->_exec_command(‘GETSURVEYLIST’,$params);
}

4:00
June 7, 2008


Derek Scruggs

Admin

posts 36

Good catch. I’ve updated that in the zip file.

Did this answer help? Let us know!
Want to be a SurveyGizmo ninja? Learn here!



The Forums are now closed, because much of the older info is out of date.

Check out our Knowledge Base, ask a support question: Support.SurveyGizmo.com or ask a sales question with our Sales Contact Form.