Merge pull request #4292 from thenbrent/fix-get_price_html_from_text

Remove `$from` param on `get_price_html_from_text()`
This commit is contained in:
Coen Jacobs 2013-12-05 00:34:58 -08:00
commit 34fd23ebb1
1 changed files with 1 additions and 1 deletions

View File

@ -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 '<span class="from">' . _x( 'From:', 'min_price', 'woocommerce' ) . ' </span>';
}