diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-17 18:13:50 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-06-17 18:13:50 +0000 |
commit | 3ee8ec2d2dbaa1f7c3555b3e6aac57c48f640aa7 (patch) | |
tree | 035f193fcecb9f5499ce93e39d304abec7b14c86 | |
parent | 01224b732b082acb44d0c6fcd80372b08f91c61a (diff) |
BUILD : 1.7.3 (201) BUGS : 91 NOTES : Fix provided by trystan - ty :)
git-svn-id: svn://svn.anope.org/anope/trunk@201 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@143 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | config.c | 5 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 12 insertions, 2 deletions
@@ -34,6 +34,9 @@ Provided by Anope Dev. <dev@anope.org> - 2004 05/21 F Allow /CS SUSPEND on registered channels only. [ #54] 05/21 F Reserved nicks (Q-lined) will be KILLed if taken on induction. [ #50] +Provided by Trystan <trystan@nomadirc.net> - 2004 +06/17 F GlobalOnCycleMessage checked at startup [ #91] + Anope Version 1.7.3 ------------------- Provided by Anope Dev. <dev@anope.org> - 2004 @@ -1236,7 +1236,10 @@ int read_config(int reload) } if (GlobalOnCycle) { - CHECK(GlobalOnCycleMessage); + if (!GlobalOnCycleMessage && !GlobalOnCycleUP) { + alog("GlobalOnCycleMessage and GlobalOnCycleUP are not defined disabling GlobalOnCycle"); + GlobalOnCycle = 0; + } } /** diff --git a/version.log b/version.log index 529a4843f..45cd9f896 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="3" -VERSION_BUILD="200" +VERSION_BUILD="201" # $Log$ # +# BUILD : 1.7.3 (201) +# BUGS : 91 +# NOTES : Fix provided by trystan - ty :) +# # BUILD : 1.7.3 (200) # BUGS : 96 # NOTES : Fixed wrong bug number on previous commit |