Changeset 49108 for trunk/src/wp-includes/class-wp-matchesmapregex.php
- Timestamp:
- 10/08/2020 09:13:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-matchesmapregex.php
r48110 r49108 84 84 */ 85 85 public function callback( $matches ) { 86 $index = intval( substr( $matches[0], 9, -1 ));86 $index = (int) substr( $matches[0], 9, -1 ); 87 87 return ( isset( $this->_matches[ $index ] ) ? urlencode( $this->_matches[ $index ] ) : '' ); 88 88 }
Note: See TracChangeset
for help on using the changeset viewer.