diff options
author | Christopher Burger <burgerc@freeside.biz> | 2019-05-16 09:16:09 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2019-05-16 09:16:09 -0400 |
commit | dac9051f94d03903c00a46117f6edf8315ec57dc (patch) | |
tree | ca3ab99193d33c06349edbb64b0876916c6f1028 /httemplate/edit/elements/edit.html | |
parent | aa6da3f37ddddf21ea5935f4e8f5fe531d18cc89 (diff) |
RT# 83179 - set agent num to use default agentnum if configured, and fixed adding contact rows
Diffstat (limited to 'httemplate/edit/elements/edit.html')
-rw-r--r-- | httemplate/edit/elements/edit.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/elements/edit.html b/httemplate/edit/elements/edit.html index 0f5f7bdb7..a32e99c0c 100644 --- a/httemplate/edit/elements/edit.html +++ b/httemplate/edit/elements/edit.html @@ -640,7 +640,7 @@ Example: // only spawn if we're the last element... return if not - var field_regex = /(\d+)(_[a-z_]+)?$/; + var field_regex = /(\d+)(_[a-z_0-9]+)?$/; var match = field_regex.exec(what.name); if ( !match ) { alert(what.name + " didn't match for " + what); |