diff options
author | megamage <none@none> | 2009-07-31 11:29:28 +0800 |
---|---|---|
committer | megamage <none@none> | 2009-07-31 11:29:28 +0800 |
commit | 0fcadd9d257fc716e7dc90b4034f33280f4dcb14 (patch) | |
tree | c15f3e0a9882eaa99bac40058b73151f811efd75 /src/game/MiscHandler.cpp | |
parent | ca271eb5dceb2ad7d82a757b9df54c6882fec1b4 (diff) |
*Replace "LoginDatabase" with "loginDatabase"
--HG--
branch : trunk
Diffstat (limited to 'src/game/MiscHandler.cpp')
-rw-r--r-- | src/game/MiscHandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/MiscHandler.cpp b/src/game/MiscHandler.cpp index 784c48a8161..7dcdd272c51 100644 --- a/src/game/MiscHandler.cpp +++ b/src/game/MiscHandler.cpp @@ -1356,7 +1356,7 @@ void WorldSession::HandleWhoisOpcode(WorldPacket& recv_data) uint32 accid = plr->GetSession()->GetAccountId(); - QueryResult *result = LoginDatabase.PQuery("SELECT username,email,last_ip FROM account WHERE id=%u", accid); + QueryResult *result = loginDatabase.PQuery("SELECT username,email,last_ip FROM account WHERE id=%u", accid); if(!result) { SendNotification(LANG_ACCOUNT_FOR_PLAYER_NOT_FOUND, charname.c_str()); |