Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -3567,6 +3567,16 @@ |
3568 | 3568 | } |
3569 | 3569 | |
3570 | 3570 | /** |
| 3571 | + * Load an extension messages file |
| 3572 | + * |
| 3573 | + * @deprecated since 1.16, warnings in 1.18, remove in 1.20 |
| 3574 | + * @codeCoverageIgnore |
| 3575 | + */ |
| 3576 | +function wfLoadExtensionMessages() { |
| 3577 | + wfDeprecated( __FUNCTION__, '1.16' ); |
| 3578 | +} |
| 3579 | + |
| 3580 | +/** |
3571 | 3581 | * Get a platform-independent path to the null file, e.g. /dev/null |
3572 | 3582 | * |
3573 | 3583 | * @return string |
Index: trunk/phase3/includes/PageQueryPage.php |
— | — | @@ -6,6 +6,7 @@ |
7 | 7 | * @ingroup SpecialPage |
8 | 8 | */ |
9 | 9 | abstract class PageQueryPage extends QueryPage { |
| 10 | + |
10 | 11 | /** |
11 | 12 | * Format the result as a simple link to the page |
12 | 13 | * |
— | — | @@ -15,14 +16,11 @@ |
16 | 17 | */ |
17 | 18 | public function formatResult( $skin, $row ) { |
18 | 19 | global $wgContLang; |
19 | | - |
20 | 20 | $title = Title::makeTitleSafe( $row->namespace, $row->title ); |
21 | 21 | $text = $row->title; |
22 | | - |
23 | 22 | if ( $title instanceof Title ) { |
24 | 23 | $text = $wgContLang->convert( $title->getPrefixedText() ); |
25 | 24 | } |
26 | | - |
27 | 25 | return Linker::linkKnown( $title, htmlspecialchars( $text ) ); |
28 | 26 | } |
29 | 27 | } |
Index: trunk/phase3/RELEASE-NOTES-1.20 |
— | — | @@ -15,7 +15,6 @@ |
16 | 16 | === New features in 1.20 === |
17 | 17 | * Added TitleIsKnown hook which gets called when determining if a page exists. |
18 | 18 | * (bug 32341) Add upload by URL domain limitation. |
19 | | -* wfLoadExtensionMessages() was removed. Deprecated in 1.16, removed in 1.20. |
20 | 19 | |
21 | 20 | === Bug fixes in 1.20 === |
22 | 21 | * (bug 30245) Use the correct way to construct a log page title. |