Index: trunk/phase3/trackback.php5 |
— | — | @@ -0,0 +1 @@ |
| 2 | +<?php require './trackback.php'; |
\ No newline at end of file |
Property changes on: trunk/phase3/trackback.php5 |
___________________________________________________________________ |
Name: svn:eol-style |
1 | 3 | + native |
Index: trunk/phase3/includes/Title.php |
— | — | @@ -3500,9 +3500,9 @@ |
3501 | 3501 | * @return \type{\string} Trackback URL |
3502 | 3502 | */ |
3503 | 3503 | public function trackbackURL() { |
3504 | | - global $wgScriptPath, $wgServer; |
| 3504 | + global $wgScriptPath, $wgServer, $wgScriptExtension; |
3505 | 3505 | |
3506 | | - return "$wgServer$wgScriptPath/trackback.php?article=" |
| 3506 | + return "$wgServer$wgScriptPath/trackback$wgScriptExtension?article=" |
3507 | 3507 | . htmlspecialchars(urlencode($this->getPrefixedDBkey())); |
3508 | 3508 | } |
3509 | 3509 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -267,8 +267,9 @@ |
268 | 268 | two "page" parameters |
269 | 269 | * (bug 17972) Special:FileDuplicateSearch form now works correctly on wikis that |
270 | 270 | don't use PathInfo or short urls |
| 271 | +* (bug 17990) trackback.php now has a trackback.php5 alias and works with |
| 272 | + $wgScriptExtension |
271 | 273 | |
272 | | - |
273 | 274 | == API changes in 1.15 == |
274 | 275 | * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions |
275 | 276 | and listing all deleted pages possible |