r105803 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r105802‎ | r105803 | r105804 >
Date:16:35, 11 December 2011
Author:reedy
Status:resolved
Tags:
Comment:
* (bug 31759) Undefined property notice in querypages API
Modified paths:
  • /trunk/phase3/RELEASE-NOTES-1.19 (modified) (history)
  • /trunk/phase3/includes/specials/SpecialBrokenRedirects.php (modified) (history)
  • /trunk/phase3/includes/specials/SpecialDoubleRedirects.php (modified) (history)
  • /trunk/phase3/includes/specials/SpecialListredirects.php (modified) (history)

Diff [purge]

Index: trunk/phase3/RELEASE-NOTES-1.19
@@ -176,8 +176,9 @@
177177 * (bug 31212) History tab not collapsed when the screen is narrow
178178 * (bug 15521) Use new section summary when the action of adding a new section
179179 also happens to create the page
180 -* (bug 32960) remove EmailAuthenticationTimestamp from database when a
 180+* (bug 32960) Remove EmailAuthenticationTimestamp from database when a
181181 email address is removed
 182+* (bug 31759) Undefined property notice in querypages API
182183
183184 === API changes in 1.19 ===
184185 * (bug 19838) siprop=interwikimap can now use the interwiki cache.
Index: trunk/phase3/includes/specials/SpecialDoubleRedirects.php
@@ -49,6 +49,7 @@
5050 'pb' => 'page', 'pc' => 'page' ),
5151 'fields' => array ( 'pa.page_namespace AS namespace',
5252 'pa.page_title AS title',
 53+ 'pa.page_title AS value',
5354 'pb.page_namespace AS nsb',
5455 'pb.page_title AS tb',
5556 'pc.page_namespace AS nsc',
Index: trunk/phase3/includes/specials/SpecialBrokenRedirects.php
@@ -47,6 +47,7 @@
4848 'p2' => 'page' ),
4949 'fields' => array( 'p1.page_namespace AS namespace',
5050 'p1.page_title AS title',
 51+ 'p1.page_title AS value',
5152 'rd_namespace',
5253 'rd_title'
5354 ),
Index: trunk/phase3/includes/specials/SpecialListredirects.php
@@ -43,6 +43,8 @@
4444 'tables' => array( 'p1' => 'page', 'redirect', 'p2' => 'page' ),
4545 'fields' => array( 'p1.page_namespace AS namespace',
4646 'p1.page_title AS title',
 47+ 'p1.page_title AS value',
 48+ 'p1.page_title AS value',
4749 'rd_namespace',
4850 'rd_title',
4951 'rd_fragment',

Follow-up revisions

RevisionCommit summaryAuthorDate
r105804Fix double pasting from r105803reedy16:37, 11 December 2011

Status & tagging log