mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
Avoid errors if row_cont is null, just use an empty array
This commit is contained in:
parent
b7487f8b72
commit
70b4ff412c
@ -218,7 +218,7 @@ var et2_arrayMgr = Class.extend(
|
||||
{
|
||||
// Get the content array for the current row
|
||||
var row = this.perspectiveData.row;
|
||||
var row_cont = this.data[row];
|
||||
var row_cont = this.data[row] || {};
|
||||
var cont = this.getRoot().data;
|
||||
var _cont = this.data;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user