Skip to content

Commit

Permalink
Core/DBLayer: Escape even more keywords
Browse files Browse the repository at this point in the history
  • Loading branch information
Aokromes committed May 24, 2018
1 parent c2688be commit 17539f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Battlegrounds/ArenaTeamMgr.cpp
Expand Up @@ -104,7 +104,7 @@ void ArenaTeamMgr::LoadArenaTeams()
// 0 1 2 3 4 5 6 7 8
QueryResult result = CharacterDatabase.Query("SELECT arenaTeamId, name, captainGuid, type, backgroundColor, emblemStyle, emblemColor, borderStyle, borderColor, "
// 9 10 11 12 13 14
"rating, weekGames, weekWins, seasonGames, seasonWins, rank FROM arena_team ORDER BY arenaTeamId ASC");
"rating, weekGames, weekWins, seasonGames, seasonWins, `rank` FROM arena_team ORDER BY arenaTeamId ASC");

if (!result)
{
Expand Down

0 comments on commit 17539f1

Please sign in to comment.