From ae29d81a249f10d4b647e0373aefb22923006ffe Mon Sep 17 00:00:00 2001 From: Olle Haerstedt Date: Wed, 28 Feb 2018 10:04:12 +0100 Subject: [PATCH] Fixed issue #13246: Fix plugin in survey responses --- application/libraries/PluginManager/LimesurveyApi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/libraries/PluginManager/LimesurveyApi.php b/application/libraries/PluginManager/LimesurveyApi.php index 06665df4b3f..bbcd439673e 100644 --- a/application/libraries/PluginManager/LimesurveyApi.php +++ b/application/libraries/PluginManager/LimesurveyApi.php @@ -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;