From 364fbd0f6605b73aa02fc4541ab8f797b03eccd3 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Mon, 22 Jul 2013 14:11:58 +0000 Subject: [PATCH] fixed wrong call leading to maximum stack size exhaused error --- etemplate/js/et2_widget_grid.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etemplate/js/et2_widget_grid.js b/etemplate/js/et2_widget_grid.js index 632ac73c8a..0076c6a583 100644 --- a/etemplate/js/et2_widget_grid.js +++ b/etemplate/js/et2_widget_grid.js @@ -739,7 +739,7 @@ var et2_grid = et2_DOMWidget.extend([et2_IDetachedDOM, et2_IAligned], // Go over the widget & add links - this is where we decide which actions are // 'allowed' for this widget at this time - var action_links = this._link_actions(actions); + var action_links = this._get_action_links(actions); // Deal with each row for(var i = 0; i < this.rowData.length; i++)