### Eclipse Workspace Patch 1.0
#P wordpress-tests
Index: wordpress/wp-includes/functions.php
===================================================================
--- wordpress/wp-includes/functions.php	(revision 14666)
+++ wordpress/wp-includes/functions.php	(working copy)
@@ -3132,11 +3132,11 @@
  *
  * @since 2.5.0
  *
- * @param mixed $maybeint Data you wish to have convered to an nonnegative integer
- * @return int An nonnegative integer
+ * @param scalar|array $maybeint Data to be converted to an integer greate than -1
+ * @return int A non-negative integer 
  */
 function absint( $maybeint ) {
-	return abs( intval( $maybeint ) );
+	return abs( (int) $maybeint );
 }
 
 /**
Index: wordpress/wp-includes/pluggable.php
===================================================================
--- wordpress/wp-includes/pluggable.php	(revision 14666)
+++ wordpress/wp-includes/pluggable.php	(working copy)
@@ -103,7 +103,7 @@
 function get_userdata( $user_id ) {
 	global $wpdb;
 
-	$user_id = absint( $user_id );
+	$user_id = abs( (int) $user_id );
 	if ( ! $user_id )
 		return false;
 
