Skip to content

Commit

Permalink
fix missing semicolon of PR (#834)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flyingmana authored Nov 6, 2019
1 parent 0205ecb commit bc1ceca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Sales/Model/Quote.php
Original file line number Diff line number Diff line change
Expand Up @@ -833,7 +833,7 @@ public function getItemById($itemId)
{
$quoteItem = null;
if ($quoteItem = $this->getItemsCollection()->getItemById($itemId)) {
return $quoteItem
return $quoteItem;
} else {
foreach (this->getItemsCollection() as $item) {
if ($item->getId() == $itemId) {
Expand Down

0 comments on commit bc1ceca

Please sign in to comment.