fix: other assorted fixes

This commit is contained in:
Ben Goldsworthy 2021-04-15 17:17:27 +01:00
parent b565a56a05
commit a5356d8052
4 changed files with 18 additions and 19 deletions

View file

@ -496,7 +496,7 @@ abstract class MCI_Footnotes_Layout_Engine {
'<option value="%s" %s>%s</option>',
$l_str_value,
// Only check for equality, not identity, WRT backlink symbol arrows.
$l_str_value === $l_arr_data['value'] ? 'selected' : '',
$l_str_value == $l_arr_data['value'] ? 'selected' : '',
$l_str_caption
);
}