Changeset 56549 for trunk/src/wp-includes/pomo/plural-forms.php
- Timestamp:
- 09/09/2023 09:26:01 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/pomo/plural-forms.php
r54133 r56549 111 111 case ' ': 112 112 case "\t": 113 $pos++;113 ++$pos; 114 114 break; 115 115 … … 117 117 case 'n': 118 118 $output[] = array( 'var' ); 119 $pos++;119 ++$pos; 120 120 break; 121 121 … … 123 123 case '(': 124 124 $stack[] = $next; 125 $pos++;125 ++$pos; 126 126 break; 127 127 … … 145 145 } 146 146 147 $pos++;147 ++$pos; 148 148 break; 149 149 … … 190 190 if ( '?' !== $o2 ) { 191 191 $output[] = array( 'op', array_pop( $stack ) ); 192 $s_pos--;192 --$s_pos; 193 193 continue; 194 194 } … … 203 203 throw new Exception( 'Missing starting "?" ternary operator' ); 204 204 } 205 $pos++;205 ++$pos; 206 206 break; 207 207 … … 265 265 while ( $i < $total ) { 266 266 $next = $this->tokens[ $i ]; 267 $i++;267 ++$i; 268 268 if ( 'var' === $next[0] ) { 269 269 $stack[] = $n;
Note: See TracChangeset
for help on using the changeset viewer.