Fix typo. "wfGetDb" -> "wfGetDB"
authorDaniel Cannon <amidaniel@users.mediawiki.org>
Mon, 10 Sep 2007 18:29:05 +0000 (18:29 +0000)
committerDaniel Cannon <amidaniel@users.mediawiki.org>
Mon, 10 Sep 2007 18:29:05 +0000 (18:29 +0000)
includes/User.php

index 055a813..c304065 100644 (file)
@@ -592,7 +592,7 @@ class User {
                );
 
                if( $field === null ) { // it has not been initialized. do so.
-                       $dbw = wfGetDb( DB_MASTER );
+                       $dbw = wfGetDB( DB_MASTER );
                        $count = $dbr->selectField(
                                'revision', 'count(*)',
                                array( 'rev_user' => $uid ),