Index: trunk/phase3/includes/job/RefreshLinksJob.php |
— | — | @@ -88,8 +88,10 @@ |
89 | 89 | wfProfileOut( __METHOD__ ); |
90 | 90 | return false; |
91 | 91 | } |
| 92 | + // Back compat for pre-r94435 jobs |
| 93 | + $table = isset( $this->params['table'] ) ? $this->params['table'] : 'templatelinks'; |
92 | 94 | $titles = $this->title->getBacklinkCache()->getLinks( |
93 | | - $this->params['table'], $this->params['start'], $this->params['end']); |
| 95 | + $table, $this->params['start'], $this->params['end']); |
94 | 96 | |
95 | 97 | # Not suitable for page load triggered job running! |
96 | 98 | # Gracefully switch to refreshLinks jobs if this happens. |