Index: trunk/phase3/CREDITS |
— | — | @@ -144,6 +144,7 @@ |
145 | 145 | * Tisane |
146 | 146 | * Umherirrender |
147 | 147 | * Ville Stadista |
| 148 | +* Vitaliy Filippov |
148 | 149 | * Yuvaraj Pandian T |
149 | 150 | * Zachary Hauri |
150 | 151 | |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -182,7 +182,7 @@ |
183 | 183 | */ |
184 | 184 | function __destruct() { |
185 | 185 | if ( isset( $this->mLinkHolders ) ) { |
186 | | - $this->mLinkHolders->__destruct(); |
| 186 | + unset( $this->mLinkHolders ); |
187 | 187 | } |
188 | 188 | foreach ( $this as $name => $value ) { |
189 | 189 | unset( $this->$name ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -253,6 +253,7 @@ |
254 | 254 | parsed messages. |
255 | 255 | * (bug 27249) "Installed software" table in Special:Version should always be |
256 | 256 | left-to-right. |
| 257 | +* (bug 28719) Do not call mLinkHolders __destruct explicitly |
257 | 258 | |
258 | 259 | === API changes in 1.18 === |
259 | 260 | * (bug 26339) Throw warning when truncating an overlarge API result. |