Skip to content

Commit

Permalink
Merge pull request #8683 from ehuelsmann/fix/master/8663
Browse files Browse the repository at this point in the history
Remove double-encoding from labels; fix setup.pl with French (due to quoting)
  • Loading branch information
ehuelsmann authored Feb 26, 2025
2 parents 47c253b + 93b422c commit 86fecd8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion UI/lib/elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@
ELSE;
label_class = "";
END;
"<label $label_id $label_for $label_class >" _ text(element_data.label) _ "</label>";
"<label $label_id $label_for $label_class >" _ element_data.label _ "</label>";
END;
END;

Expand Down
4 changes: 2 additions & 2 deletions UI/setup/credentials.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ <h2 align="center" style="margin-top: 0">
style="margin-top:1em">
<input type="hidden" id="csrf-token" name="csrf_token" value="[% csrf_token %]" />
<div class="login_form">
[% select_hint = text('Select or Enter User');
[% select_hint = text('Select or Enter User').replace('&quot;','\\&quot;');
INCLUDE select element_data = {
name = 's_user'
id = 's-user'
Expand All @@ -45,7 +45,7 @@ <h2 align="center" style="margin-top: 0">
tabindex = 1
label = text('DB admin login')
"data-dojo-type" = "dijit/form/ComboBox"
"data-dojo-props" = "value:'$s_user', placeHolder:'$select_hint'"
"data-dojo-props" = "value:&quot;$s_user&quot;, placeHolder:&quot;$select_hint&quot;"
attributes = { autocomplete = 'off'}
};
INCLUDE input element_data = {
Expand Down

0 comments on commit 86fecd8

Please sign in to comment.