Index: trunk/phase3/includes/Parser.php |
— | — | @@ -3570,9 +3570,6 @@ |
3571 | 3571 | # HTML names must be case-insensitively unique (bug 10721) |
3572 | 3572 | $arrayKey = strtolower( $safeHeadline ); |
3573 | 3573 | |
3574 | | - # XXX : Is $refers[$headlineCount] ever accessed, actually ? |
3575 | | - $refers[$headlineCount] = $safeHeadline; |
3576 | | - |
3577 | 3574 | # count how many in assoc. array so we can track dupes in anchors |
3578 | 3575 | isset( $refers[$arrayKey] ) ? $refers[$arrayKey]++ : $refers[$arrayKey] = 1; |
3579 | 3576 | $refcount[$headlineCount] = $refers[$arrayKey]; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -368,6 +368,7 @@ |
369 | 369 | * (bug 14500) Site feed (Recentchanges) no longer shows up on the actual |
370 | 370 | recent changes page. |
371 | 371 | * (bug 14511) MediaWiki:Delete-legend is no longer double escaped |
| 372 | +* Generate correct section anchors for numeric headers |
372 | 373 | |
373 | 374 | === API changes in 1.13 === |
374 | 375 | |