General: Ensure bookmark query limits are numeric.

Props paulkevan, xknown.
Merges [53959] to the 6.0 branch.

git-svn-id: https://develop.svn.wordpress.org/branches/6.0@53962 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2022-08-30 15:18:08 +00:00
parent f61e5ec2e5
commit b33cc43b7b

View File

@ -307,7 +307,7 @@ function get_bookmarks( $args = '' ) {
$query .= " $exclusions $inclusions $search";
$query .= " ORDER BY $orderby $order";
if ( -1 != $parsed_args['limit'] ) {
$query .= ' LIMIT ' . $parsed_args['limit'];
$query .= ' LIMIT ' . absint( $parsed_args['limit'] );
}
$results = $wpdb->get_results( $query );