Index: trunk/phase3/includes/Title.php |
— | — | @@ -3539,20 +3539,13 @@ |
3540 | 3540 | */ |
3541 | 3541 | public function isInCategory( $category ) { |
3542 | 3542 | $dbr = wfGetDB( DB_SLAVE ); |
3543 | | - $res = $dbr->select( |
3544 | | - 'categorylinks', |
3545 | | - '*', |
| 3543 | + return $dbr->selectRow( 'categorylinks', '*', |
3546 | 3544 | array( |
3547 | 3545 | 'cl_from' => $this->getArticleId(), |
3548 | 3546 | 'cl_to' => $category, |
3549 | 3547 | ), |
3550 | | - __METHOD__, |
3551 | | - array( |
3552 | | - 'LIMIT' => 1 |
3553 | | - ) |
| 3548 | + __METHOD__ |
3554 | 3549 | ); |
3555 | | - |
3556 | | - return ( $dbr->numRows( $res ) > 0 ); |
3557 | 3550 | } |
3558 | 3551 | |
3559 | 3552 | /** |