Skip to content

Commit

Permalink
Opravi chybku, ma se predavat $i a ne $id ...
Browse files Browse the repository at this point in the history
  • Loading branch information
divaska committed Mar 7, 2017
1 parent 8149c0c commit 5ba1d0a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function buildForm(FormBuilderInterface $builder, array $options)
}
for ($i = $idStart; $i <= $idEnd; $i++) {
if (trim($id) !== '') {
$numbers[] = str_pad((string)trim($id), 9, '0', STR_PAD_LEFT);
$numbers[] = str_pad((string)trim($i), 9, '0', STR_PAD_LEFT);
}
}
}
Expand Down

0 comments on commit 5ba1d0a

Please sign in to comment.