Code Duplication    Length = 3-3 lines in 2 locations

includes/formatting.php 2 locations

@@ 427-429 (lines=3) @@
424
		case 'ZAR' :
425
			$formatted = ( 'before' === $position ? $symbol . $price : $price . $symbol );
426
			break;
427
		case 'NOK' :
428
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
429
			break;
430
		default :
431
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
432
			break;
@@ 430-432 (lines=3) @@
427
		case 'NOK' :
428
			$formatted = ( 'before' === $position ? $symbol . ' ' . $price : $price . ' ' . $symbol );
429
			break;
430
		default :
431
			$formatted = ( 'before' === $position ? $currency . ' ' . $price : $price . ' ' . $currency );
432
			break;
433
	endswitch;
434
435
	/**