From bc7c391854c6091aa816fa1f2157c35aaa9461b9 Mon Sep 17 00:00:00 2001 From: Arlen Johnson Date: Tue, 12 Oct 2021 11:37:52 -0400 Subject: [PATCH] Ensure dg_bd_txt_repl_str is not missing in actionMenu onclick[] references (CO-2230) (#19) --- 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' => '' ), ); }