Changeset 62175
- Timestamp:
- 03/29/2026 10:29:55 PM (4 days ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
-
wp-admin/includes/class-pclzip.php (modified) (7 diffs)
-
wp-includes/IXR/class-IXR-value.php (modified) (1 diff)
-
wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-pclzip.php
r59506 r62175 297 297 298 298 // ----- Look for first arg 299 if ((is_int eger($v_arg_list[0])) && ($v_arg_list[0] > 77000)) {299 if ((is_int($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { 300 300 301 301 // ----- Parse the options … … 480 480 481 481 // ----- Look for first arg 482 if ((is_int eger($v_arg_list[0])) && ($v_arg_list[0] > 77000)) {482 if ((is_int($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { 483 483 484 484 // ----- Parse the options … … 733 733 734 734 // ----- Look for first arg 735 if ((is_int eger($v_arg_list[0])) && ($v_arg_list[0] > 77000)) {735 if ((is_int($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { 736 736 737 737 // ----- Parse the options … … 894 894 895 895 // ----- Look for first arg 896 if ((is_int eger($v_arg_list[0])) && ($v_arg_list[0] > 77000)) {896 if ((is_int($v_arg_list[0])) && ($v_arg_list[0] > 77000)) { 897 897 898 898 // ----- Parse the options … … 1480 1480 // ----- Check the value 1481 1481 $v_value = $p_options_list[$i+1]; 1482 if ((!is_int eger($v_value)) || ($v_value<0)) {1482 if ((!is_int($v_value)) || ($v_value<0)) { 1483 1483 PclZip::privErrorLog(PCLZIP_ERR_INVALID_OPTION_VALUE, "Integer expected for option '".PclZipUtilOptionText($p_options_list[$i])."'"); 1484 1484 return PclZip::errorCode(); … … 1647 1647 $v_work_list = explode(",", $p_options_list[$i+1]); 1648 1648 } 1649 else if (is_int eger($p_options_list[$i+1])) {1649 else if (is_int($p_options_list[$i+1])) { 1650 1650 $v_work_list[0] = $p_options_list[$i+1].'-'.$p_options_list[$i+1]; 1651 1651 } … … 1945 1945 1946 1946 case PCLZIP_ATT_FILE_MTIME : 1947 if (!is_int eger($v_value)) {1947 if (!is_int($v_value)) { 1948 1948 PclZip::privErrorLog(PCLZIP_ERR_INVALID_ATTRIBUTE_VALUE, "Invalid type ".gettype($v_value).". Integer expected for attribute '".PclZipUtilOptionText($v_key)."'"); 1949 1949 return PclZip::errorCode(); -
trunk/src/wp-includes/IXR/class-IXR-value.php
r42201 r62175 45 45 return 'boolean'; 46 46 } 47 if (is_int eger($this->data)) {47 if (is_int($this->data)) { 48 48 return 'int'; 49 49 } -
trunk/src/wp-includes/functions.php
r62054 r62175 5106 5106 5107 5107 if ( is_string( $path_element ) 5108 || is_int eger( $path_element )5108 || is_int( $path_element ) 5109 5109 || null === $path_element 5110 5110 ) { … … 5183 5183 foreach ( $path as $path_element ) { 5184 5184 if ( 5185 ! is_string( $path_element ) && ! is_int eger( $path_element ) &&5185 ! is_string( $path_element ) && ! is_int( $path_element ) && 5186 5186 ! is_null( $path_element ) 5187 5187 ) {
Note: See TracChangeset
for help on using the changeset viewer.