Index: trunk/phase3/RELEASE-NOTES-1.19 |
— | — | @@ -109,7 +109,6 @@ |
110 | 110 | * (bug 32512) Include 'associated namespace' checkbox on Special:Contributions |
111 | 111 | * Added $wgSend404Code, true by default, which can be set to false to send a |
112 | 112 | 200 status code instead of 404 for nonexistent articles. |
113 | | -* (bug 23427) Introduced {{PAGEID}} variable to expose page.page_id. |
114 | 113 | * (bug 33447) Link to the broken image tracking category from Special:Wantedfiles. |
115 | 114 | * (bug 27724) Add timestamp to job queue. |
116 | 115 | * (bug 30339) Implement SpecialPage for running javascript tests. Disabled by default, due to |
Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -2817,8 +2817,6 @@ |
2818 | 2818 | break; |
2819 | 2819 | case 'articlepath': |
2820 | 2820 | return $wgArticlePath; |
2821 | | - case 'pageid': |
2822 | | - return $this->getTitle()->getArticleId(); |
2823 | 2821 | case 'sitename': |
2824 | 2822 | return $wgSitename; |
2825 | 2823 | case 'server': |
Index: trunk/phase3/includes/MagicWord.php |
— | — | @@ -67,7 +67,6 @@ |
68 | 68 | 'numberoffiles', |
69 | 69 | 'numberofedits', |
70 | 70 | 'articlepath', |
71 | | - 'pageid', |
72 | 71 | 'sitename', |
73 | 72 | 'server', |
74 | 73 | 'servername', |
Index: trunk/phase3/languages/messages/MessagesEn.php |
— | — | @@ -287,7 +287,6 @@ |
288 | 288 | 'localurl' => array( 0, 'LOCALURL:' ), |
289 | 289 | 'localurle' => array( 0, 'LOCALURLE:' ), |
290 | 290 | 'articlepath' => array( 0, 'ARTICLEPATH' ), |
291 | | - 'pageid' => array( 0, 'PAGEID' ), |
292 | 291 | 'server' => array( 0, 'SERVER' ), |
293 | 292 | 'servername' => array( 0, 'SERVERNAME' ), |
294 | 293 | 'scriptpath' => array( 0, 'SCRIPTPATH' ), |