Skip to content

Commit

Permalink
Admin: allow guest orders to be re-ordered
Browse files Browse the repository at this point in the history
  • Loading branch information
justinbeaty committed Jun 18, 2022
1 parent 9b539e3 commit 6045b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Sales/Model/Order.php
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ public function canReorderIgnoreSalable()
*/
protected function _canReorder($ignoreSalable = false)
{
if ($this->canUnhold() || $this->isPaymentReview() || !$this->getCustomerId()) {
if ($this->canUnhold() || $this->isPaymentReview()) {
return false;
}

Expand Down

0 comments on commit 6045b4a

Please # to comment.