Skip to content
Snippets Groups Projects
Commit d051e2da authored by Mark Spencer's avatar Mark Spencer
Browse files

Recognize + as a valid part of a phone number

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2617 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 94279f00
No related branches found
No related tags found
No related merge requests found
...@@ -511,7 +511,7 @@ int ast_isphonenumber(char *n) ...@@ -511,7 +511,7 @@ int ast_isphonenumber(char *n)
if (!n || !strlen(n)) if (!n || !strlen(n))
return 0; return 0;
for (x=0;n[x];x++) for (x=0;n[x];x++)
if (!strchr("0123456789*#", n[x])) if (!strchr("0123456789*#+", n[x]))
return 0; return 0;
return 1; return 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment