aboutsummaryrefslogtreecommitdiff
path: root/src/game/TicketMgr.cpp
diff options
context:
space:
mode:
authorParadox <none@none>2009-01-17 10:47:26 -0500
committerParadox <none@none>2009-01-17 10:47:26 -0500
commitd64b239db6230c2d73eab87cef614e2df080dcb2 (patch)
tree4beea33a8948a6546a14bc4648730a14b218f590 /src/game/TicketMgr.cpp
parent09ddc711f4355bb04717a2092b4dc4149f495491 (diff)
fixes for the ticket system
--HG-- branch : trunk
Diffstat (limited to 'src/game/TicketMgr.cpp')
-rw-r--r--src/game/TicketMgr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/TicketMgr.cpp b/src/game/TicketMgr.cpp
index 1e28c2a2ec1..111e1ed27ad 100644
--- a/src/game/TicketMgr.cpp
+++ b/src/game/TicketMgr.cpp
@@ -111,7 +111,7 @@ void TicketMgr::LoadGMTickets()
InitTicketID();
// Delete all out of object holder
GM_TicketList.clear();
- QueryResult *result = CharacterDatabase.Query( "SELECT `guid`, `playerGuid`, `name`, `message`, `timestamp`, `closed`, `assignedto`, `comment` FROM `gm_tickets` WHERE `closed` = '0'" );
+ QueryResult *result = CharacterDatabase.Query( "SELECT `guid`, `playerGuid`, `name`, `message`, `timestamp`, `closed`, `assignedto`, `comment` FROM `gm_tickets`" );
GM_Ticket *ticket;
if(!result)
@@ -197,7 +197,7 @@ void TicketMgr::InitTicketID()
QueryResult *result = CharacterDatabase.Query("SELECT MAX(guid) FROM gm_tickets");
if(result)
{
- m_ticketid = result->Fetch()[0].GetUInt64() + 1;
+ m_ticketid = result->Fetch()[0].GetUInt64();
delete result;
}
}