Skip to content

Commit

Permalink
Feature: If 'summary' information is passed on from statistics.php, w…
Browse files Browse the repository at this point in the history
…ill preselect those questions for export

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@1235 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Oct 8, 2004
1 parent d460a45 commit d41c192
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion admin/export.php
Expand Up @@ -188,7 +188,14 @@
foreach($excesscols as $ec)
{
echo "<option value='$ec'";
if ($i<256)
if (isset($_POST['summary']))
{
if (in_array($ec, $_POST['summary']))
{
echo "selected";
}
}
elseif ($i<256)
{
echo " selected";
}
Expand Down

0 comments on commit d41c192

Please sign in to comment.