Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions app/code/core/Mage/Sales/Model/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -1895,8 +1895,10 @@ public function getStatusHistoryCollection($reload = false)
->setOrder('entity_id', 'desc');

if ($this->getId()) {
/** @var Mage_Sales_Model_Order_Status_History $status */
foreach ($this->_statusHistory as $status) {
$status->setOrder($this);
$status->setDataChanges(false);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it seems we need to add this setDataChanges calls in a lot of places, but doesn't it mean we should modify some Abstract or something like that to solve this issue in a more general way?

}
}
}
Expand Down