Bug 35156 - Harmonise spelling of getArticleID() and getArticleId()

Mass change ->getArticleId() to ->getArticleID()
This commit is contained in:
Sam Reed 2012-03-11 19:04:37 +00:00
parent e77f4c8b7c
commit 856be3bc29
Notes: Sam Reed 2012-03-11 19:04:37 +00:00

View file

@ -119,7 +119,7 @@ class SpamBlacklist extends BaseBlacklist {
*/
function getCurrentLinks( $title ) {
$dbr = wfGetDB( DB_SLAVE );
$id = $title->getArticleId(); // should be zero queries
$id = $title->getArticleID(); // should be zero queries
$res = $dbr->select( 'externallinks', array( 'el_to' ),
array( 'el_from' => $id ), __METHOD__ );
$links = array();