mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Absolute numbers where we will never allow negatives, fixes #4692
git-svn-id: https://develop.svn.wordpress.org/trunk@5836 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -233,7 +233,7 @@ function user_row( $user_object, $style = '' ) {
|
||||
function _wp_get_comment_list( $s = false, $start, $num ) {
|
||||
global $wpdb;
|
||||
|
||||
$start = (int) $start;
|
||||
$start = abs( (int) $start );
|
||||
$num = (int) $num;
|
||||
|
||||
if ( $s ) {
|
||||
|
||||
Reference in New Issue
Block a user