Skip to content

Commit

Permalink
Fixed issue #13246: Fix plugin in survey responses
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 28, 2018
1 parent 96d100f commit ae29d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/libraries/PluginManager/LimesurveyApi.php
Expand Up @@ -186,7 +186,7 @@ public function getTemplateList()
*/
public function getResponse($surveyId, $responseId, $bMapQuestionCodes = true)
{
$survey = Survey::model()->findByPk($surveyId);
$survey = \Survey::model()->findByPk($surveyId);
$response = \SurveyDynamic::model($surveyId)->findByPk($responseId);
if (!$bMapQuestionCodes) {
return $response;
Expand Down

0 comments on commit ae29d81

Please sign in to comment.