Designer: Improperly escaped code in "Add option" dialog #14109 issue fix
Signed-off-by: Yeshwanth Vuppu <vyeshwanth123@gmail.com>
This commit is contained in:
parent
cec81aec2f
commit
e53afc3ef9
@ -1734,7 +1734,7 @@ function Click_option (id_this, column_name, table_name) {
|
||||
// var top = Glob_Y - document.getElementById(id_this).offsetHeight - 10;
|
||||
document.getElementById(id_this).style.top = (screen.height / 4) + 'px';
|
||||
document.getElementById(id_this).style.display = 'block';
|
||||
document.getElementById('option_col_name').innerHTML = '<strong>' + PMA_sprintf(PMA_messages.strAddOption, column_name) + '</strong>';
|
||||
document.getElementById('option_col_name').innerHTML = '<strong>' + PMA_sprintf(PMA_messages.strAddOption, decodeURI(column_name)) + '</strong>';
|
||||
col_name = column_name;
|
||||
tab_name = table_name;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user