Changeset 57873 for trunk/src/wp-includes/bookmark.php
- Timestamp:
- 03/23/2024 02:18:55 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/bookmark.php
r57192 r57873 35 35 $_bookmark = $bookmark; 36 36 } else { 37 if ( isset( $GLOBALS['link'] ) && ( $GLOBALS['link']->link_id == $bookmark ) ) {37 if ( isset( $GLOBALS['link'] ) && ( $GLOBALS['link']->link_id === $bookmark ) ) { 38 38 $_bookmark = & $GLOBALS['link']; 39 39 } else { … … 308 308 $query .= " $exclusions $inclusions $search"; 309 309 $query .= " ORDER BY $orderby $order"; 310 if ( -1 != $parsed_args['limit'] ) {310 if ( -1 !== $parsed_args['limit'] ) { 311 311 $query .= ' LIMIT ' . absint( $parsed_args['limit'] ); 312 312 }
Note: See TracChangeset
for help on using the changeset viewer.