[Help] Dmn cms syntax error
Hello,
Can someone help with error plugin Character Market DMN mu CMS
When i try to sell character i get error
Code:
UPDATE AccountCharacter SET GameID1 = , GameID2 = 'xGOD', GameID3 = 'ElfBuff', GameID4 = 'TheKing', GameID5 = 'WhiteBlood', GameIDC = 'WhiteBlood' WHERE Id = 'test'
================================================================================
Incorrect syntax near ','.
===========================================================
After reload in character market shows player, but when i view it have error - Character Not Found.
- - - Updated - - -
Maybe problem with php version or i don't know. Becouse sql can't update table with empty space in AccountCharacter
like
GameID1 = ,
But if i change query to
Code:
UPDATE AccountCharacter SET GameID1 = 'test1', GameID2 = 'test2', GameID3 = 'test3', GameID4 = 'test4', GameID5 = 'test5', GameIDC = 'WhiteBlood' WHERE Id = 'test'
query works fine, what is the problem?