Changeset 9189 for trunk/wp-includes/formatting.php
- Timestamp:
- 10/15/2008 08:47:56 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/formatting.php
r9179 r9189 2032 2032 $result .= $l['between_only_two'] . array_shift($args); 2033 2033 // Loop when more than two args 2034 while ( count($args) ) { 2034 $i = count($args); 2035 while ( $i ) { 2035 2036 $arg = array_shift($args); 2037 $i--; 2036 2038 if ( $i == 1 ) 2037 2039 $result .= $l['between_last_two'] . $arg;
Note: See TracChangeset
for help on using the changeset viewer.