Changeset 47219 for trunk/src/wp-admin/install-helper.php
- Timestamp:
- 02/09/2020 04:52:28 PM (7 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/install-helper.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/install-helper.php
r47198 r47219 176 176 177 177 // Got our column, check the params. 178 if ( ( $col_type != null) && ( $row->Type != $col_type ) ) {179 ++$diffs; 180 } 181 if ( ( $is_null !=null ) && ( $row->Null != $is_null ) ) {182 ++$diffs; 183 } 184 if ( ( $key != null) && ( $row->Key != $key ) ) {185 ++$diffs; 186 } 187 if ( ( $default != null) && ( $row->Default != $default ) ) {188 ++$diffs; 189 } 190 if ( ( $extra != null) && ( $row->Extra != $extra ) ) {178 if ( ( null != $col_type ) && ( $row->Type != $col_type ) ) { 179 ++$diffs; 180 } 181 if ( ( null != $is_null ) && ( $row->Null != $is_null ) ) { 182 ++$diffs; 183 } 184 if ( ( null != $key ) && ( $row->Key != $key ) ) { 185 ++$diffs; 186 } 187 if ( ( null != $default ) && ( $row->Default != $default ) ) { 188 ++$diffs; 189 } 190 if ( ( null != $extra ) && ( $row->Extra != $extra ) ) { 191 191 ++$diffs; 192 192 }
Note:
See TracChangeset
for help on using the changeset viewer.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)