summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-05-21 23:05:38 +0000
committerAdam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864>2010-05-21 23:05:38 +0000
commitfae2710ba7e068edb68baf26f901af564741e5bf (patch)
tree9142408ba995a55a9ce11015c97d86cbb5c603c1
parent8e39d5f21928b29074da7e494f79d2f76119ffc6 (diff)
Fixed saving capsmin in the database, fixes the bug also fixed by the last commit
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2974 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--src/core/db_plain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/db_plain.cpp b/src/core/db_plain.cpp
index 51678322d..7e699b0fb 100644
--- a/src/core/db_plain.cpp
+++ b/src/core/db_plain.cpp
@@ -1168,7 +1168,7 @@ class DBPlain : public Module
}
db << "MD BI TTB BOLDS " << ci->ttb[0] << " COLORS " << ci->ttb[1] << " REVERSES " << ci->ttb[2] << " UNDERLINES " << ci->ttb[3] << " BADWORDS " << ci->ttb[4] << " CAPS " << ci->ttb[5] << " FLOOD " << ci->ttb[6] << " REPEAT " << ci->ttb[7] << endl;
if (ci->capsmin)
- db << "MD BI CAPSMINS " << ci->capsmin << endl;
+ db << "MD BI CAPSMIN " << ci->capsmin << endl;
if (ci->capspercent)
db << "MD BI CAPSPERCENT " << ci->capspercent << endl;
if (ci->floodlines)