Index: branches/REL1_14/phase3/includes/parser/ParserOutput.php |
— | — | @@ -94,6 +94,9 @@ |
95 | 95 | // We don't record Special: links currently |
96 | 96 | // It might actually be wise to, but we'd need to do some normalization. |
97 | 97 | return; |
| 98 | + } elseif( $dbk === '' ) { |
| 99 | + // Don't record self links - [[#Foo]] |
| 100 | + return; |
98 | 101 | } |
99 | 102 | if ( !isset( $this->mLinks[$ns] ) ) { |
100 | 103 | $this->mLinks[$ns] = array(); |
Index: branches/REL1_14/phase3/RELEASE-NOTES |
— | — | @@ -26,6 +26,8 @@ |
27 | 27 | |
28 | 28 | == Changes since 1.14.0 == |
29 | 29 | * (bug 17737) Fixed russian URLs for Special:BookSources |
| 30 | +* (bug 17713) Using links with only an anchor no longer add an dummy entry in |
| 31 | + the pagelinks table |
30 | 32 | |
31 | 33 | == Changes since 1.14.0rc1 == |
32 | 34 | |