Index: trunk/phase3/includes/MessageCache.php |
— | — | @@ -331,7 +331,7 @@ |
332 | 332 | $bigConds[] = 'page_len > ' . intval( $wgMaxMsgCacheEntrySize ); |
333 | 333 | |
334 | 334 | # Load titles for all oversized pages in the MediaWiki namespace |
335 | | - $res = $dbr->select( 'page', 'page_title', $bigConds, __METHOD__ ); |
| 335 | + $res = $dbr->select( 'page', 'page_title', $bigConds, __METHOD__ . "($code)-big" ); |
336 | 336 | while ( $row = $dbr->fetchObject( $res ) ) { |
337 | 337 | $cache[$row->page_title] = '!TOO BIG'; |
338 | 338 | } |
— | — | @@ -345,7 +345,7 @@ |
346 | 346 | |
347 | 347 | $res = $dbr->select( array( 'page', 'revision', 'text' ), |
348 | 348 | array( 'page_title', 'old_text', 'old_flags' ), |
349 | | - $smallConds, __METHOD__. "($code)" ); |
| 349 | + $smallConds, __METHOD__ . "($code)-small" ); |
350 | 350 | |
351 | 351 | for ( $row = $dbr->fetchObject( $res ); $row; $row = $dbr->fetchObject( $res ) ) { |
352 | 352 | $cache[$row->page_title] = ' ' . Revision::getRevisionText( $row ); |