Skip to content

Commit

Permalink
Merged issue fix from r634 to 0.13 release branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
eofster committed Mar 6, 2009
1 parent 622f421 commit a2625d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions AKTelephoneNumberFormatter.m
Expand Up @@ -230,8 +230,9 @@ - (BOOL)getObjectValue:(id *)anObject
[telephoneNumber appendString:@"+"];
[scanner setScanLocation:1];
} else {
// If the number is not in the international format, allow asterisk.
[phoneNumberCharacterSet addCharactersInString:@"*"];
// If the number is not in the international format, allow asterisk and
// number sign.
[phoneNumberCharacterSet addCharactersInString:@"*#"];
}

NSString *aString;
Expand Down

0 comments on commit a2625d4

Please sign in to comment.