Skip to content

Commit

Permalink
function call fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Spreeuw committed Mar 28, 2017
1 parent cb164c4 commit 464ddcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions woocommerce-pdf-invoices-packingslips.php
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ public function shipping_notes() {
* Return/Show shop/company footer imprint, copyright etc.
*/
public function get_footer() {
return $this->functions->get_shipping_notes();
return $this->functions->get_footer();
}
public function footer() {
$this->functions->footer();
Expand All @@ -548,7 +548,7 @@ public function footer() {
* Return/Show Extra field 1
*/
public function get_extra_1() {
return $this->functions->get_shipping_notes();
return $this->functions->get_extra_1();
}
public function extra_1() {
$this->functions->extra_1();
Expand All @@ -558,7 +558,7 @@ public function extra_1() {
* Return/Show Extra field 2
*/
public function get_extra_2() {
return $this->functions->get_shipping_notes();
return $this->functions->get_extra_2();
}
public function extra_2() {
$this->functions->extra_2();
Expand All @@ -568,7 +568,7 @@ public function extra_2() {
* Return/Show Extra field 3
*/
public function get_extra_3() {
return $this->functions->get_shipping_notes();
return $this->functions->get_extra_3();
}
public function extra_3() {
$this->functions->extra_3();
Expand Down

0 comments on commit 464ddcb

Please sign in to comment.