fix incorrect sql statement, and add config switch to skip authentication for testing
This commit is contained in:
parent
e44f687030
commit
51ea6d996d
@ -26,6 +26,9 @@ RC_ICONS = resource/icon/akashi.ico
|
||||
# Enable this to print network messages tothe console
|
||||
#DEFINES += NET_DEBUG
|
||||
|
||||
# Enable this to skip all authentication checks
|
||||
#DEFINES += SKIP_AUTH
|
||||
|
||||
SOURCES += src/advertiser.cpp \
|
||||
src/aoclient.cpp \
|
||||
src/aopacket.cpp \
|
||||
|
@ -156,7 +156,7 @@ QList<DBManager::BanInfo> DBManager::getRecentBans()
|
||||
{
|
||||
QList<BanInfo> return_list;
|
||||
QSqlQuery query;
|
||||
query.prepare("SELECT TOP(5) * FROM BANS ORDER BY TIME DESC");
|
||||
query.prepare("SELECT * FROM BANS ORDER BY TIME DESC LIMIT 5");
|
||||
query.setForwardOnly(true);
|
||||
query.exec();
|
||||
while (query.next()) {
|
||||
|
Loading…
Reference in New Issue
Block a user