Skip to content

Commit

Permalink
Fixed pipe in statistics post
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/source/limesurvey@3107 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Jul 20, 2007
1 parent bfef00b commit 65e687e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/statistics.php
Expand Up @@ -66,7 +66,7 @@
}

if (isset($_POST['summary']) && !is_array($_POST['summary'])) {
$_POST['summary'] = explode("|", $_POST['summary']);
$_POST['summary'] = explode("+", $_POST['summary']);
}

if (!isset($surveyid)) {$surveyid=returnglobal('sid');}
Expand Down Expand Up @@ -630,7 +630,7 @@ function show(element) {
$statisticsoutput .= "\n\t\t\t\t</tr>\n";
if (isset($allfields))
{
$allfield=implode("|", $allfields);
$allfield=implode("+", $allfields);
}
if (incompleteAnsFilterstate() === true)
{
Expand Down

0 comments on commit 65e687e

Please sign in to comment.