Navigation Menu

Skip to content

Commit

Permalink
Fixed bug: changed number of skipped lines at beginning (survey table…
Browse files Browse the repository at this point in the history
… information was being skipped).

git-svn-id: file:///Users/Shitiz/Downloads/lssvn/trunk/unstable@129 b72ed6b6-b9f8-46b5-92b4-906544132732
  • Loading branch information
jcleeland committed Mar 24, 2003
1 parent 77f841e commit 14d7169
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/importsurvey.php
Expand Up @@ -64,13 +64,13 @@
exit;
}

for ($i=0; $i<10; $i++)
for ($i=0; $i<9; $i++)
{
unset($bigarray[$i]);
}
$bigarray = array_values($bigarray);

//TABLES
//SURVEYS
$stoppoint = array_search("# NEW TABLE\n", $bigarray);
for ($i=0; $i<=$stoppoint+2; $i++)
{
Expand Down

0 comments on commit 14d7169

Please sign in to comment.