diff options
author | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-26 18:43:43 +0000 |
---|---|---|
committer | drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2007-08-26 18:43:43 +0000 |
commit | 1a5e9120c77aa541cd2f91a7f743c7abea880a4b (patch) | |
tree | c922f3cea916730a7a273628ac36286af50aecd5 /src/modules/cs_appendtopic.c | |
parent | a3bf52551de0264525447338f9ab935cc5b2d68e (diff) |
BUILD : 1.7.19 (1267) BUGS : 662 NOTES : akick counts are now properly decressed. os_info now really uses status var. some module clean ups.
git-svn-id: svn://svn.anope.org/anope/trunk@1267 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@985 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/modules/cs_appendtopic.c')
-rw-r--r-- | src/modules/cs_appendtopic.c | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/src/modules/cs_appendtopic.c b/src/modules/cs_appendtopic.c index 8d3120d37..0967462c9 100644 --- a/src/modules/cs_appendtopic.c +++ b/src/modules/cs_appendtopic.c @@ -1,14 +1,22 @@ -#include "module.h" - -/* Original module: cs_appendtopic by SGR +/* cs_appendtopic.c - Add text to a channels topic * - * Included in the Anope module pack since 1.7.9 + * (C) 2003-2007 Anope Team + * Contact us at info@anope.org + * + * Based on the original module by SGR <Alex_SGR@ntlworld.com> + * Included in the Anope module pack since Anope 1.7.9 * Anope Coder: GeniusDex <geniusdex@anope.org> * + * Please read COPYING and README for further details. + * * Send bug reports to the Anope Coder instead of the module * author, because any changes since the inclusion into anope * are not supported by the original author. + * */ +/*************************************************************************/ + +#include "module.h" #define AUTHOR "SGR" #define VERSION "$Id$" @@ -34,11 +42,11 @@ /* DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING */ /* ---------------------------------------------------------------------- */ -#define LNG_NUM_STRINGS 3 +#define LNG_NUM_STRINGS 3 -#define LNG_CHAN_HELP 0 -#define LNG_CHAN_HELP_APPENDTOPIC 1 -#define LNG_APPENDTOPIC_SYNTAX 2 +#define LNG_CHAN_HELP 0 +#define LNG_CHAN_HELP_APPENDTOPIC 1 +#define LNG_APPENDTOPIC_SYNTAX 2 int my_cs_appendtopic(User * u); void my_cs_help(User * u); @@ -221,7 +229,7 @@ void my_add_languages(void) moduleInsertLanguage(LANG_NL, LNG_NUM_STRINGS, langtable_nl); moduleInsertLanguage(LANG_DE, LNG_NUM_STRINGS, langtable_de); moduleInsertLanguage(LANG_PT, LNG_NUM_STRINGS, langtable_pt); - moduleInsertLanguage(LANG_IT, LNG_NUM_STRINGS, langtable_it); + moduleInsertLanguage(LANG_IT, LNG_NUM_STRINGS, langtable_it); } /* EOF */ |