Make WordPress Core

Changeset 28858


Ignore:
Timestamp:
06/26/2014 06:44:45 PM (10 years ago)
Author:
wonderboymusic
Message:

Do not touch absint(). Reverts [28855].

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r28857 r28858  
    30013001 *
    30023002 * @param mixed $maybeint Data you wish to have converted to a nonnegative integer
    3003  * @param bool $limit Whether to only return up to PHP_INT_MAX.
    30043003 * @return int An nonnegative integer
    30053004 */
    3006 function absint( $maybeint, $limit = false ) {
    3007     $int = abs( intval( $maybeint ) );
    3008     if ( $limit && $int > PHP_INT_MAX ) {
    3009         $int = PHP_INT_MAX;
    3010     }
    3011     return $int;
     3005function absint( $maybeint ) {
     3006    return abs( intval( $maybeint ) );
    30123007}
    30133008
Note: See TracChangeset for help on using the changeset viewer.