Code Duplication    Length = 3-3 lines in 2 locations

includes/formatting.php 2 locations

@@ 559-561 (lines=3) @@
556
		case 'ZAR' :
557
			$formatted = ( 'before' === $position ? $symbol . $price : $price . $symbol );
558
			break;
559
		case 'NOK' :
560
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
561
			break;
562
		default :
563
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
564
			break;
@@ 562-564 (lines=3) @@
559
		case 'NOK' :
560
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
561
			break;
562
		default :
563
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
564
			break;
565
	endswitch;
566
567
	/**