aboutsummaryrefslogtreecommitdiff
path: root/src/trinitycore/CliRunnable.cpp
diff options
context:
space:
mode:
authormegamage <none@none>2009-07-31 11:29:28 +0800
committermegamage <none@none>2009-07-31 11:29:28 +0800
commit0fcadd9d257fc716e7dc90b4034f33280f4dcb14 (patch)
treec15f3e0a9882eaa99bac40058b73151f811efd75 /src/trinitycore/CliRunnable.cpp
parentca271eb5dceb2ad7d82a757b9df54c6882fec1b4 (diff)
*Replace "LoginDatabase" with "loginDatabase"
--HG-- branch : trunk
Diffstat (limited to 'src/trinitycore/CliRunnable.cpp')
-rw-r--r--src/trinitycore/CliRunnable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trinitycore/CliRunnable.cpp b/src/trinitycore/CliRunnable.cpp
index 15dd45edfff..d950adc22f8 100644
--- a/src/trinitycore/CliRunnable.cpp
+++ b/src/trinitycore/CliRunnable.cpp
@@ -239,7 +239,7 @@ bool ChatHandler::HandleAccountOnlineListCommand(const char* /*args*/)
///- Get the username, last IP and GM level of each account
// No SQL injection. account is uint32.
// 0 1 2 3
- QueryResult *resultLogin = LoginDatabase.PQuery("SELECT username, last_ip, gmlevel, expansion FROM account WHERE id = '%u'",account);
+ QueryResult *resultLogin = loginDatabase.PQuery("SELECT username, last_ip, gmlevel, expansion FROM account WHERE id = '%u'",account);
if(resultLogin)
{