diff options
| author | 2009-10-24 22:34:31 +0000 | |
|---|---|---|
| committer | 2009-10-24 22:34:31 +0000 | |
| commit | a75e76305da98164f82d3d38730bbc31707503b1 (patch) | |
| tree | 67ae200857acf67dc54c7210152fd4ac206c6669 /src/configparser.cpp | |
| parent | Fix incorrect netburst detection (diff) | |
Fix semicolon being included in XML entity expansion
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11973 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configparser.cpp')
| -rw-r--r-- | src/configparser.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/configparser.cpp b/src/configparser.cpp index 44eb117a8..1373ae5af 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -136,7 +136,8 @@ struct Parser } else if (ch == '"') break; - value.push_back(ch); + else + value.push_back(ch); } items->push_back(KeyVal(key, value)); return true; |
