Index: trunk/extensions/CentralAuth/CentralAuthUser.php |
— | — | @@ -1525,17 +1525,14 @@ |
1526 | 1526 | return; |
1527 | 1527 | } |
1528 | 1528 | |
1529 | | - wfDebugLog( 'CentralAuth', "Loading attached wiki list for global user {$this->mName}." ); |
1530 | | - |
1531 | 1529 | if ( isset( $this->mAttachedList ) ) { |
1532 | | - wfDebugLog( 'CentralAuth', "-Found in cache." ); |
1533 | 1530 | // We have a list already, probably from the cache. |
1534 | 1531 | $this->mAttachedArray = explode( "\n", $this->mAttachedList ); |
1535 | 1532 | |
1536 | 1533 | return; |
1537 | 1534 | } |
1538 | 1535 | |
1539 | | - wfDebugLog( 'CentralAuth', "-Loading from DB" ); |
| 1536 | + wfDebugLog( 'CentralAuth', "Loading attached wiki list for global user {$this->mName} from DB" ); |
1540 | 1537 | |
1541 | 1538 | $dbw = self::getCentralDB(); |
1542 | 1539 | |