diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-22 21:07:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-02-22 21:07:20 +0000 |
commit | 74d823b2a290896394106004cb58fcf009c53dac (patch) | |
tree | c0b6a3b2a42737f0ecbbba3f4e3d0acd82aea0f2 /src | |
parent | e5cd13921593cba8617fddebbcbde029f54dfa65 (diff) |
Perm elines (<exception> tag) not being applied - fixed
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3293 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/xline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xline.cpp b/src/xline.cpp index 97b28c24d..accb5ce9f 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -665,7 +665,7 @@ void apply_lines(const int What) { userrec* u = (userrec*)(*u2); u->MakeHost(host); - if (elines.size()) + if (elines.size() || pelines.size()) { // ignore people matching exempts if (matches_exception(host)) |