Code Duplication    Length = 3-3 lines in 2 locations

includes/formatting.php 2 locations

@@ 420-422 (lines=3) @@
417
		case 'ZAR' :
418
			$formatted = ( 'before' === $position ? $symbol . $price : $price . $symbol );
419
			break;
420
		case 'NOK' :
421
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
422
			break;
423
		default :
424
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
425
			break;
@@ 423-425 (lines=3) @@
420
		case 'NOK' :
421
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
422
			break;
423
		default :
424
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
425
			break;
426
	endswitch;
427
428
	/**