Skip to content

Commit

Permalink
Fixed missing semikolon when dumping survey.
Browse files Browse the repository at this point in the history
git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@1286 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
c-schmitz committed Mar 20, 2005
1 parent b9a5aea commit 6175c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/dumpsurvey.php
Expand Up @@ -101,7 +101,7 @@ function BuildOutput($Query)
$ColumnValues = substr($ColumnValues, 0, -2); //strip off last comma space


$Output .= "INSERT INTO $TableName ($ColumnNames) VALUES ($ColumnValues)\n";
$Output .= "INSERT INTO $TableName ($ColumnNames) VALUES ($ColumnValues);\n";
}
return $Output;
}
Expand Down

0 comments on commit 6175c07

Please sign in to comment.