Index: trunk/phase3/includes/libs/JSMin.php |
— | — | @@ -109,18 +109,18 @@ |
110 | 110 | $runLength = strcspn( $this->input, $interestingChars, $this->inputIndex ); |
111 | 111 | $this->output .= substr( $this->input, $this->inputIndex, $runLength ); |
112 | 112 | $this->inputIndex += $runLength; |
113 | | - $this->a = $this->get(); |
| 113 | + $c = $this->get(); |
114 | 114 | |
115 | | - if ( $this->a === $this->b ) { |
| 115 | + if ( $c === $this->b ) { |
116 | 116 | break; |
117 | 117 | } |
118 | 118 | |
119 | | - if ( $this->a === "\n" || $this->a === null ) { |
| 119 | + if ( $c === "\n" || $c === null ) { |
120 | 120 | throw new JSMinException( 'Unterminated string literal.' ); |
121 | 121 | } |
122 | 122 | |
123 | | - if ( $this->a === '\\' ) { |
124 | | - $this->output .= $this->a . $this->get(); |
| 123 | + if ( $c === '\\' ) { |
| 124 | + $this->output .= $c . $this->get(); |
125 | 125 | } |
126 | 126 | } |
127 | 127 | } |