diff --git a/callerid.c b/callerid.c index 59d9a68603..0a0883eb32 100755 --- a/callerid.c +++ b/callerid.c @@ -508,7 +508,7 @@ int ast_isphonenumber(char *n) if (!n || !strlen(n)) return 0; for (x=0;n[x];x++) - if (!strchr("0123456789", n[x])) + if (!strchr("0123456789*#", n[x])) return 0; return 1; }