File tree Expand file tree Collapse file tree
resources/templates/database/central_columns Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ phpMyAdmin - ChangeLog
8181- issue #19022 Fix case where tables from wrong database is loaded in navigation tree
8282- issue #18593 Fix drop db line included in server export if exporting only data
8383- issue #18049 Also check that curl_exec is enabled for the new version check
84+ - issue #18451 Fix when editing inline central column, Null is always preselected
8485
85865.2.1 (2023-02-07)
8687- issue #17522 Fix case where the routes cache file is invalid
Original file line number Diff line number Diff line change 7575
7676 <td class =" text-nowrap" name =" col_isNull" >
7777 <input name =" field_null[{{ row_num }}]" id =" field_{{ row_num }}_6" type =" checkbox" value =" YES" class =" allow_null"
78- {{- row ['col_isNull' ] is not empty and row ['col_isNull' ] != ' NO' and row ['col_isNull' ] != ' NOT NULL' ? ' checked' }}>
78+ {{- row ['col_isNull' ] is not empty and row ['col_isNull' ] != ' NO' and row ['col_isNull' ] != ' NOT NULL' and row [ 'col_isNull' ] != 0 ? ' checked' }}>
7979 </td >
8080
8181 <td class =" text-nowrap" name =" col_extra" >
8282 <input name =" col_extra[{{ row_num }}]" id =" field_{{ row_num }}_7" type =" checkbox" value =" auto_increment"
83- {{- row ['col_extra' ] is not empty and row ['col_extra' ] == ' auto_increment' }}>
83+ {{- row ['col_extra' ] is not empty and row ['col_extra' ] == ' auto_increment' ? ' checked ' }}>
8484 </td >
8585</tr >
Original file line number Diff line number Diff line change 361361 <td class =" text-nowrap" name =" col_isNull" >
362362 <span >{{ row ['col_isNull' ] ? ' Yes' | trans : ' No' | trans }}</span >
363363 <input name =" field_null[{{ row_num }}]" id =" field_{{ row_num }}_6" type =" checkbox" value =" YES" class =" allow_null"
364- {{- row ['col_isNull' ] is not empty and row ['col_isNull' ] != ' NO' and row ['col_isNull' ] != ' NOT NULL' ? ' checked' }}>
364+ {{- row ['col_isNull' ] is not empty and row ['col_isNull' ] != ' NO' and row ['col_isNull' ] != ' NOT NULL' and row [ 'col_isNull' ] != 0 ? ' checked' }}>
365365 </td >
366366 <td class =" text-nowrap" name =" col_extra" >
367367 <span >{{ row ['col_extra' ] }}</span >
You can’t perform that action at this time.
0 commit comments