Skip to content

Instantly share code, notes, and snippets.

@leewillis77
Created February 21, 2012 22:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leewillis77/1879331 to your computer and use it in GitHub Desktop.
Save leewillis77/1879331 to your computer and use it in GitHub Desktop.
$ git diff
diff --git a/jigoshop.php b/jigoshop.php
index 9874228..5d04ff9 100644
--- a/jigoshop.php
+++ b/jigoshop.php
@@ -631,7 +631,7 @@ function jigoshop_price( $price, $args = array() ) {
$return = $currency_symbol . $price . $currency_code;
break;
case 'symbol_code_space' :
- $return = $currency_code . ' ' . $price . ' ' . $currency_code;
+ $return = $currency_symbol . ' ' . $price . ' ' . $currency_code;
break;
endswitch;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment