From f7df434399c892933425f5d521f1c4c2f2cd55a3 Mon Sep 17 00:00:00 2001 From: Brent Shepherd Date: Wed, 4 Dec 2013 17:46:12 -0800 Subject: [PATCH] Remove $from param on get_price_html_from_text() As it's not used at all. --- includes/abstracts/abstract-wc-product.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/abstracts/abstract-wc-product.php b/includes/abstracts/abstract-wc-product.php index d487e405f79..ea040c8485f 100644 --- a/includes/abstracts/abstract-wc-product.php +++ b/includes/abstracts/abstract-wc-product.php @@ -928,7 +928,7 @@ class WC_Product { * @param mixed $from String or float to wrap with 'from' text * @return string */ - public function get_price_html_from_text( $from ) { + public function get_price_html_from_text() { return '' . _x( 'From:', 'min_price', 'woocommerce' ) . ' '; }