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 ff4fdb520..3f3e2f752 100755
--- a/callerid.c
+++ b/callerid.c
@@ -511,7 +511,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;
}