Skip to content
This repository was archived by the owner on Apr 5, 2018. It is now read-only.

Commit

Permalink
Fixed not showing full history set (missing one line), fixing issue #52
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Olde Hampsink committed Apr 22, 2015
1 parent 3e0deb8 commit dc8070b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/Import_HistoryService.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function showLog($history)
$rows = $model->rows;

// Make "total" list
for ($i = 2; $i <= $rows; $i++) {
for ($i = 2; $i <= ($rows + 1); $i++) {
$total[$i] = isset($errors[$i]) ? $errors[$i] : array(Craft::t('None'));
}
}
Expand Down

0 comments on commit dc8070b

Please sign in to comment.