Skip to content

Commit

Permalink
Fix typo (parsing error)
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Schmutzler <[email protected]>
  • Loading branch information
adschm committed Nov 9, 2018
1 parent d5f1ffd commit 560b8ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

// Write polygon coordinates into array
while($row = $rc->fetch(PDO::FETCH_ASSOC)) {
if(!isset($polystore[$row['polyid'])) {
if(!isset($polystore[$row['polyid']])) {
debug('Database inconsistent: No polyhood defined for ID '.$row['polyid']);
continue; // Skip those orphaned vertex entries
}
Expand Down

0 comments on commit 560b8ba

Please sign in to comment.