mirror of
git://develop.git.wordpress.org/
synced 2025-04-04 20:23:27 +02:00
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:
parent
f61e5ec2e5
commit
b33cc43b7b
@ -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 );
|
||||
|
Loading…
x
Reference in New Issue
Block a user