diff options
-rw-r--r-- | Changes | 1 | ||||
-rwxr-xr-x | src/bin/register | 6 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 4 deletions
@@ -2,6 +2,7 @@ Anope Version S V N -------------------- Provided by Anope Dev. <dev@anope.org> - 2005 06/03 A Protocol files can now fill mod_current_buffer with custom code. [#389] +06/04 F Register script now works again. [#394] 06/04 F Finishing sync for Ultimate3 was not done correctly. [#398] 06/03 F Moved checks for UseTokens, UseTS6, and Numeric. [#385] 06/03 F Load protocol module before launching listnicks/listchans. [#391] diff --git a/src/bin/register b/src/bin/register index 5162e44e4..437463e9c 100755 --- a/src/bin/register +++ b/src/bin/register @@ -5,7 +5,7 @@ ############################################### # CONFIGURATION CACHE (e.g. ../config.cache) -CACHEFILE="../config.cache" +CACHEFILE="../../config.cache" # REGISTRATION INFORMATION CACHE FILE (no need to alter this) REGCACHE="register.cache" @@ -25,7 +25,7 @@ REGISTRYADDRESS="register@anope.org" ################################################ if [ $0 != "./register" ] ; then - echo "Warning: Run this file while in the /bin/ directory (e.g. ./register)" + echo "Warning: Run this file while in the /src/bin/ directory (e.g. ./register)" exit 1 fi @@ -93,7 +93,7 @@ if [ $answer = "YES" ] ; then echo "Cleaning up..." rm $REGCACHE fi - echo "Registration Competed. Thank you for registering Anope." + echo "Registration Completed. Thank you for registering Anope." exit 0; fi diff --git a/version.log b/version.log index 4a5a38df3..bd006953e 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="10" -VERSION_BUILD="826" +VERSION_BUILD="827" # $Log$ # +# BUILD : 1.7.10 (827) +# BUGS : 394 +# NOTES : Fixed /src/bin/register +# # BUILD : 1.7.10 (826) # BUGS : 384 # NOTES : Removed --with-ircd stuff from configure(.in) |