Skip to content

Commit

Permalink
FIX: Make sure shipping rate show s up in shipping options list
Browse files Browse the repository at this point in the history
  • Loading branch information
jedateach committed Aug 18, 2014
1 parent bff477b commit 4bcff89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/model/ShippingMethod.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ public function getRate() {
return $this->CalculatedRate;
}

public function Title() {
public function getTitle() {
return implode(" - ", array_filter(array(
$this->CalculatedRate,
$this->Rate,
$this->Name,
$this->Description
)));
Expand Down

0 comments on commit 4bcff89

Please sign in to comment.