Commit 59041da2fc238b23ec7429880e66e960c1177c83
don't strip leading zero
Stripping causes some routing numbers fail to validate in the US.Caleb Maclennan committed on 3/20/2014, 5:17:35 PM
Parent: 5f80e5a7a9fb3a8d20a94f1d14fa513ff8283f5f
Files changed
freecheck | changed |
freecheck | |||
---|---|---|---|
@@ -273,9 +273,9 @@ | |||
273 | 273 … | # Strip any leading zeros... | |
274 | 274 … | # Only should be one on routing... | |
275 | 275 … | $RoutingSymbol =~ s/^0//; | |
276 | 276 … | # One or more on institution | |
277 | -$Institution =~ s/^0+//; | ||
277 … | +#$Institution =~ s/^0+//; | ||
278 | 278 … | ||
279 | 279 … | # Fraction format: | |
280 | 280 … | # | |
281 | 281 … | # 2 digits, a "-", institution number (no leading zeros) |
Built with git-ssb-web