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 25, 2018
1 parent 17539f1 commit e67fce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/game/Spells/SpellMgr.cpp
Expand Up @@ -872,7 +872,7 @@ void SpellMgr::LoadSpellRanks()
uint32 oldMSTime = getMSTime();

// 0 1 2
QueryResult result = WorldDatabase.Query("SELECT first_spell_id, spell_id, `rank` from spell_ranks ORDER BY first_spell_id, rank");
QueryResult result = WorldDatabase.Query("SELECT first_spell_id, spell_id, `rank` from spell_ranks ORDER BY first_spell_id, `rank`");

if (!result)
{
Expand Down

0 comments on commit e67fce6

Please sign in to comment.