Skip to content

Commit

Permalink
Fixed issue #17912: Sporadic "There are empty question groups in this…
Browse files Browse the repository at this point in the history
… survey " error (#2270)
  • Loading branch information
jackrabbithanna committed Feb 25, 2022
1 parent 8fdbfda commit 6615dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/QuestionGroup.php
Expand Up @@ -459,7 +459,7 @@ public static function getTotalGroupsWithoutQuestions($surveyid)
*/
public static function getTotalGroupsWithQuestions($surveyid)
{
$cacheKey = 'getTotalGroupsWithoutQuestions_' . $surveyid;
$cacheKey = 'getTotalGroupsWithQuestions_' . $surveyid;
$value = EmCacheHelper::get($cacheKey);
if ($value !== false) {
return $value;
Expand Down

0 comments on commit 6615dff

Please sign in to comment.