mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-28 01:29:05 +01:00
Fix the regular expresion to get the right key for nested Ids using [], textbox_widget
This commit is contained in:
parent
18285429e9
commit
2445bfc22b
@ -161,7 +161,7 @@ var et2_arrayMgr = Class.extend(
|
||||
{
|
||||
if(typeof _key === "string")
|
||||
{
|
||||
_key = _key.replace("[","[").replace("]","]");
|
||||
_key = _key.replace(/[/g,"[").replace(/]/g,"]");
|
||||
indexes = _key.split('[');
|
||||
}
|
||||
if (indexes.length > 1)
|
||||
|
Loading…
Reference in New Issue
Block a user