Skip to content

Commit

Permalink
Dev: Fix faulty comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Jun 13, 2018
1 parent eb4174a commit b71df16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/admin/statistics_helper.php
Expand Up @@ -3272,7 +3272,7 @@ protected function displayResults($outputs, $results, $rt, $outputType, $surveyi
$graphLbl[] = $al[1];
break;
case 'both':
if (empty($al[0]) == "") {
if ($al[0] == "") {
$graphLbl[] = gT("No answer") . ': ' . $al[1];
} else {
$graphLbl[] = $al[0] . ': ' . $al[1];
Expand Down

0 comments on commit b71df16

Please sign in to comment.