[interface] #2879909 Removed double htmlspecialchars when editing enum column
This commit is contained in:
@@ -43,6 +43,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
|
|||||||
+ [lang] Turkish update, thanks to Burak Yavuz
|
+ [lang] Turkish update, thanks to Burak Yavuz
|
||||||
+ [auth] Add custom port configuration in signon, thanks to Gary Smith
|
+ [auth] Add custom port configuration in signon, thanks to Gary Smith
|
||||||
- [core] Removed context from the error handler
|
- [core] Removed context from the error handler
|
||||||
|
- [interface] #2879909 Removed double htmlspecialchars when editing enum column
|
||||||
|
|
||||||
3.2.3.0 (not yet released)
|
3.2.3.0 (not yet released)
|
||||||
- patch #2856664 [export] Date, time, and datetime column types now export correctly to
|
- patch #2856664 [export] Date, time, and datetime column types now export correctly to
|
||||||
|
@@ -349,13 +349,12 @@ for ($i = 0; $i < $num_fields; $i++) {
|
|||||||
$binary = 0;
|
$binary = 0;
|
||||||
$unsigned = 0;
|
$unsigned = 0;
|
||||||
$zerofill = 0;
|
$zerofill = 0;
|
||||||
$length_to_display = htmlspecialchars($length);
|
|
||||||
} else {
|
} else {
|
||||||
$length_to_display = $length;
|
|
||||||
$binary = false;
|
$binary = false;
|
||||||
$unsigned = stristr($row['Type'], 'unsigned');
|
$unsigned = stristr($row['Type'], 'unsigned');
|
||||||
$zerofill = stristr($row['Type'], 'zerofill');
|
$zerofill = stristr($row['Type'], 'zerofill');
|
||||||
}
|
}
|
||||||
|
$length_to_display = $length;
|
||||||
|
|
||||||
$content_cells[$i][$ci] = '<input id="field_' . $i . '_' . ($ci - $ci_offset) . '"'
|
$content_cells[$i][$ci] = '<input id="field_' . $i . '_' . ($ci - $ci_offset) . '"'
|
||||||
. ' type="text" name="field_length[' . $i . ']" size="' . $length_values_input_size . '"'
|
. ' type="text" name="field_length[' . $i . ']" size="' . $length_values_input_size . '"'
|
||||||
|
Reference in New Issue
Block a user