Skip to content

Commit

Permalink
Ensure dg_bd_txt_repl_str is not missing in actionMenu onclick[] refe…
Browse files Browse the repository at this point in the history
…rences (CO-2230) (#19)
  • Loading branch information
arlen authored Oct 12, 2021
1 parent d0864ad commit bc7c391
Showing 1 changed file with 4 additions and 2 deletions.
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

0 comments on commit bc7c391

Please sign in to comment.