aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcallerid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/callerid.c b/callerid.c
index 59d9a6860..0a0883eb3 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;
}