From 4409a9fe6dc33745701490164e8820a02e3ebadd Mon Sep 17 00:00:00 2001 From: spartanicus Date: Tue, 12 Oct 2021 11:08:38 -0400 Subject: [PATCH] Ensure dg_bd_txt_repl_str is not missing in actionMenu onclick[] references (CO-2230) --- app/templates/Standard/index.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/templates/Standard/index.php b/app/templates/Standard/index.php index 9deda13df..cbc652aca 100644 --- a/app/templates/Standard/index.php +++ b/app/templates/Standard/index.php @@ -345,7 +345,8 @@ function _column_key($modelsName, $c, $tz=null) { 'dg_url' => $actionUrl, // action url for building a unique ID 'dg_conf_btn' => __('match.op.confirm'), // dialog confirm button text 'dg_cancel_btn' => __('match.op.cancel'), // dialog cancel button text - 'dg_title' => __('match.op.confirm') // dialog box title + 'dg_title' => __('match.op.confirm'), // dialog box title + 'dg_bd_txt_repl_str' => '' // dialog body text replacement strings ), ); @@ -399,7 +400,8 @@ function _column_key($modelsName, $c, $tz=null) { 'dg_url' => $actionUrl, 'dg_conf_btn' => __('match.op.remove'), 'dg_cancel_btn' => __('match.op.cancel'), - 'dg_title' => __('match.op.remove') + 'dg_title' => __('match.op.remove'), + 'dg_bd_txt_repl_str' => '' ), ); }