do not remove the BINARY attribute in drop-down

This commit is contained in:
Marc Delisle
2008-04-30 17:00:54 +00:00
parent f201e1e93b
commit fc041e4e15
2 changed files with 1 additions and 3 deletions

View File

@@ -58,6 +58,7 @@ danbarry
(fixed for mysqli extension only)
- [interface] sanitize the after_field parameter,
thanks to Norman Hippert
- [structure] do not remove the BINARY attribute in drop-down
2.11.6.0 (2008-04-29)
- bug #1903724 [interface] Displaying of very large queries in error message

View File

@@ -355,9 +355,6 @@ for ($i = 0; $i <= $num_fields; $i++) {
$cnt_attribute_types = count($cfg['AttributeTypes']);
for ($j = 0;$j < $cnt_attribute_types; $j++) {
if ($cfg['AttributeTypes'][$j] == 'BINARY') {
continue;
}
$content_cells[$i][$ci] .= ' <option value="'. $cfg['AttributeTypes'][$j] . '"';
if (strtoupper($attribute) == strtoupper($cfg['AttributeTypes'][$j])) {
$content_cells[$i][$ci] .= ' selected="selected"';