Skip to content

Commit

Permalink
Cosmetic fix in Mage_Sales_Model_Order_Payment (#2350)
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano authored Aug 1, 2022
1 parent 1699468 commit ee05559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Sales/Model/Order/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ public function refund($creditmemo)
$message = $this->hasMessage() ? $this->getMessage()
: Mage::helper('sales')->__('Refunded amount of %s offline.', $this->_formatPrice($baseAmountToRefund));
}
$message = $message = $this->_prependMessage($message);
$message = $this->_prependMessage($message);
$message = $this->_appendTransactionToMessage($transaction, $message);
$order->setState(Mage_Sales_Model_Order::STATE_PROCESSING, true, $message);

Expand Down

0 comments on commit ee05559

Please sign in to comment.