From 464ddcb1ffecf3a05768a568139027f1ad0c5865 Mon Sep 17 00:00:00 2001 From: Ewout Fernhout Date: Tue, 28 Mar 2017 11:03:20 +0200 Subject: [PATCH] function call fixes --- woocommerce-pdf-invoices-packingslips.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/woocommerce-pdf-invoices-packingslips.php b/woocommerce-pdf-invoices-packingslips.php index 720652850..deb3d155b 100755 --- a/woocommerce-pdf-invoices-packingslips.php +++ b/woocommerce-pdf-invoices-packingslips.php @@ -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(); @@ -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(); @@ -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(); @@ -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();