diff options
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | src/bin/anoperc.in | 2 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 7 insertions, 2 deletions
@@ -7,6 +7,7 @@ Anope Version S V N 01/06 F Missing backtick in SQL query for saving news items. [ #00] 01/06 F Some OperServ commands not respecting OSOpersOnly when disabled. [#657] 01/06 F MySQL code not always reporting Services Root flags correctly. [#659] +01/10 F Minor syntax error in anoperc. [#665] Anope Version 1.7.18 -------------------- diff --git a/src/bin/anoperc.in b/src/bin/anoperc.in index 2b187d382..b162350a0 100644 --- a/src/bin/anoperc.in +++ b/src/bin/anoperc.in @@ -126,7 +126,7 @@ elif [ "$1" = "help" ] ; then echo "$0 restart Restart Anope (Databases will be saved)" echo " Additional parameters may be passed" echo " (e.g. $0 restart -logchan)" - echi " For a list type $0 $1 paramlist" + echo " For a list type $0 $1 paramlist" echo "$0 rehash Rehash Configuration and Save Databases" echo "$0 version Return Anope Version and Build Information" echo "$0 help Show this help menu" diff --git a/version.log b/version.log index 15bbb17e7..e50f1c4b1 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="18" VERSION_EXTRA="-svn" -VERSION_BUILD="1221" +VERSION_BUILD="1222" # $Log$ # +# BUILD : 1.7.18 (1222) +# BUGS : 665 +# NOTES : Fixed a minor syntax error in anoperc (echi instead of echo) +# # BUILD : 1.7.18 (1221) # BUGS : 659 # NOTES : Fixed a mistake in the MySQL code with identifying services roots |