summaryrefslogtreecommitdiff
path: root/modules/extra/m_sql_log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/extra/m_sql_log.cpp')
-rw-r--r--modules/extra/m_sql_log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/m_sql_log.cpp b/modules/extra/m_sql_log.cpp
index 496ecb5e6..2be893cba 100644
--- a/modules/extra/m_sql_log.cpp
+++ b/modules/extra/m_sql_log.cpp
@@ -99,9 +99,9 @@ class SQLLog : public Module
}
insert.SetValue("user", l->u ? l->u->nick : "");
- insert.SetValue("acc", l->nc ? l->nc->display : "");
+ insert.SetValue("acc", l->nc ? l->nc->GetDisplay() : "");
insert.SetValue("command", l->c ? l->c->name : "");
- insert.SetValue("channel", l->ci ? l->ci->name : "");
+ insert.SetValue("channel", l->ci ? l->ci->GetName() : "");
insert.SetValue("msg", msg);
SQL->Run(NULL, insert);