Skip to content

Ensure dg_bd_txt_repl_str is not missing in actionMenu onclick[] refe… #19

Merged
merged 1 commit into from
Oct 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions app/templates/Standard/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
),
);

Expand Down Expand Up @@ -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' => ''
),
);
}
Expand Down