Changeset 31678
- Timestamp:
- 03/08/2015 11:00:21 PM (10 years ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/formatting.php
r31554 r31678 1760 1760 function antispambot( $email_address, $hex_encoding = 0 ) { 1761 1761 $email_no_spam_address = ''; 1762 for ( $i = 0 ; $i < strlen( $email_address ); $i++ ) {1762 for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i++ ) { 1763 1763 $j = rand( 0, 1 + $hex_encoding ); 1764 1764 if ( $j == 0 ) { -
trunk/src/wp-includes/plugin.php
r31090 r31678 480 480 else 481 481 $args[] = $arg; 482 for ( $a = 2 ; $a < func_num_args(); $a++ )482 for ( $a = 2, $num = func_num_args(); $a < $num; $a++ ) 483 483 $args[] = func_get_arg($a); 484 484
Note: See TracChangeset
for help on using the changeset viewer.