Changeset 49108 for trunk/src/wp-includes/comment.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment.php
r48961 r49108 1255 1255 if ( ! is_array( $col_length ) && (int) $col_length > 0 ) { 1256 1256 $max_length = (int) $col_length; 1257 } elseif ( is_array( $col_length ) && isset( $col_length['length'] ) && intval( $col_length['length'] )> 0 ) {1257 } elseif ( is_array( $col_length ) && isset( $col_length['length'] ) && (int) $col_length['length'] > 0 ) { 1258 1258 $max_length = (int) $col_length['length']; 1259 1259
Note: See TracChangeset
for help on using the changeset viewer.