Index: trunk/phase3/includes/OutputPage.php |
— | — | @@ -938,13 +938,13 @@ |
939 | 939 | 'rel' => 'alternate', |
940 | 940 | 'type' => 'application/x-wiki', |
941 | 941 | 'title' => wfMsg( 'edit' ), |
942 | | - 'href' => $wgTitle->getFullURL( 'action=edit' ) |
| 942 | + 'href' => $wgTitle->getLocalURL( 'action=edit' ) |
943 | 943 | ) ); |
944 | 944 | // Alternate edit link |
945 | 945 | $this->addLink( array( |
946 | 946 | 'rel' => 'edit', |
947 | 947 | 'title' => wfMsg( 'edit' ), |
948 | | - 'href' => $wgTitle->getFullURL( 'action=edit' ) |
| 948 | + 'href' => $wgTitle->getLocalURL( 'action=edit' ) |
949 | 949 | ) ); |
950 | 950 | } |
951 | 951 | } |
— | — | @@ -1597,7 +1597,7 @@ |
1598 | 1598 | foreach( $wgFeedClasses as $format => $class ) { |
1599 | 1599 | $tags[] = $this->feedLink( |
1600 | 1600 | $format, |
1601 | | - $rctitle->getFullURL( "feed={$format}" ), |
| 1601 | + $rctitle->getLocalURL( "feed={$format}" ), |
1602 | 1602 | wfMsg( "site-{$format}-feed", $wgSitename ) ); # For grep: 'site-rss-feed', 'site-atom-feed'. |
1603 | 1603 | } |
1604 | 1604 | } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -206,6 +206,7 @@ |
207 | 207 | * (bug 17581) Wrong index name in PostgreSQL's updater: was rc_timestamp_nobot, |
208 | 208 | changed to rc_timestamp_bot |
209 | 209 | * (bug 17437) Fixed incorrect link to web-based installer |
| 210 | +* (bug 17538) Use shorter URLs in <link> elements |
210 | 211 | |
211 | 212 | == API changes in 1.15 == |
212 | 213 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |