diff options
| author | 2009-10-23 19:07:40 +0000 | |
|---|---|---|
| committer | 2009-10-23 19:07:40 +0000 | |
| commit | 38e125bdb8422343a86017479d00b462bf36e784 (patch) | |
| tree | b016af970c84de61a071ad1ec4fd98a53165b570 /src/modules/m_httpd_config.cpp | |
| parent | Make ConfigTag::items private (diff) | |
| download | inspircd++-38e125bdb8422343a86017479d00b462bf36e784.tar.gz inspircd++-38e125bdb8422343a86017479d00b462bf36e784.tar.bz2 inspircd++-38e125bdb8422343a86017479d00b462bf36e784.zip | |
Change to <type:vhost> and <oper:vhost> because <oper:host> is taken.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11957 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd_config.cpp')
| -rw-r--r-- | src/modules/m_httpd_config.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_httpd_config.cpp b/src/modules/m_httpd_config.cpp index 44013b429..0763ad11d 100644 --- a/src/modules/m_httpd_config.cpp +++ b/src/modules/m_httpd_config.cpp @@ -91,7 +91,7 @@ class ModuleHttpStats : public Module { data << "<" << x->first << " "; ConfigTag* tag = x->second; - for (std::vector<KeyVal>::iterator j = tag->items.begin(); j != tag->items.end(); j++) + for (std::vector<KeyVal>::const_iterator j = tag->getItems().begin(); j != tag->getItems().end(); j++) { data << Sanitize(j->first) << "="" << Sanitize(j->second) << "" "; } |
