Show
Ignore:
Timestamp:
09/16/07 19:12:33 (6 years ago)
Author:
p_lindheimer
Message:

#2383 allow + sign in CID

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/amp_conf/htdocs/admin/common/libfreepbx.javascripts.js

    r4993 r5042  
    133133{return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||(c==":")||(c==",")||(c==".")||(c=="%")||(c=="#")||(c=="-")||(c=="/")||(c=="?")||(c=="&")||(c=="="))} 
    134134function isCallerIDChar(c) 
    135 {return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c=="."))} 
     135{return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c==".")||(c=="+"))} 
    136136function isDialpatternChar(c) 
    137137{return(((c>="0")&&(c<="9"))||(c=="[")||(c=="]")||(c=="-")||(c=="+")||(c==".")||(c=="|")||(c=="Z"||c=="z")||(c=="X"||c=="x")||(c=="N"||c=="n")||(c=="*")||(c=="#")||(c=="_")||(c=="!"))} 
  • freepbx/trunk/amp_conf/htdocs/admin/common/script.legacy.js

    r4993 r5042  
    621621 
    622622function isCallerIDChar (c) 
    623 {   return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) || ((c >= "0") && (c <= "9")) || (c == ":") || (c == "_") || (c == "-") || (c == "<") || (c == ">") || (c == "(") || (c == ")") || (c == " ") || (c == "\"") || (c == "&") || (c == "@") || (c == ".")
     623{   return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) || ((c >= "0") && (c <= "9")) || (c == ":") || (c == "_") || (c == "-") || (c == "<") || (c == ">") || (c == "(") || (c == ")") || (c == " ") || (c == "\"") || (c == "&") || (c == "@") || (c == ".") || (c == "+")
    624624} 
    625625