Index: trunk/phase3/includes/parser/Preprocessor_Hash.php |
— | — | @@ -1274,6 +1274,9 @@ |
1275 | 1275 | } |
1276 | 1276 | |
1277 | 1277 | function getArgument( $index ) { |
| 1278 | + if ( !isset( $this->args[$index] ) ) { |
| 1279 | + return false; |
| 1280 | + } |
1278 | 1281 | return $this->args[$index]; |
1279 | 1282 | } |
1280 | 1283 | } |
Index: trunk/phase3/includes/parser/Preprocessor_DOM.php |
— | — | @@ -1321,6 +1321,9 @@ |
1322 | 1322 | } |
1323 | 1323 | |
1324 | 1324 | function getArgument( $index ) { |
| 1325 | + if ( !isset( $this->args[$index] ) ) { |
| 1326 | + return false; |
| 1327 | + } |
1325 | 1328 | return $this->args[$index]; |
1326 | 1329 | } |
1327 | 1330 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -309,7 +309,8 @@ |
310 | 310 | of time with CACHE_NONE (default objectcache table configuration). |
311 | 311 | * Trying to set two different default category sort keys for one page now produces |
312 | 312 | a warning |
313 | | -* (bug 16143) Fix redirect loop on special pages starting with lower case letters. |
| 313 | +* (bug 16143) Fix redirect loop on special pages starting with lower case letters |
| 314 | +* (bug 15737) Fix notices while expanding using PPCustomFrame |
314 | 315 | |
315 | 316 | === API changes in 1.14 === |
316 | 317 | |