mirror of
https://github.com/vrana/adminer.git
synced 2025-08-17 20:01:25 +02:00
Replace <strong> by <b> and <em> by <i>
This commit is contained in:
@@ -422,8 +422,8 @@ document.getElementById('username').focus();
|
||||
*/
|
||||
function editInput($table, $field, $attrs, $value) {
|
||||
if ($field["type"] == "enum") {
|
||||
return ($field["null"] ? "<label><input type='radio'$attrs value=''" . (isset($value) || isset($_GET["select"]) ? "" : " checked") . "><em>NULL</em></label> " : "")
|
||||
. "<label><input type='radio'$attrs value='0'" . ($value === 0 ? " checked" : "") . "><em>" . lang('empty') . "</em></label>"
|
||||
return ($field["null"] ? "<label><input type='radio'$attrs value=''" . (isset($value) || isset($_GET["select"]) ? "" : " checked") . "><i>NULL</i></label> " : "")
|
||||
. "<label><input type='radio'$attrs value='0'" . ($value === 0 ? " checked" : "") . "><i>" . lang('empty') . "</i></label>"
|
||||
;
|
||||
}
|
||||
return "";
|
||||
|
Reference in New Issue
Block a user