Browse Source

Channels are allowed to have '1' or '3' in their names again.

Change-Id: I84b7b13b6db2ed8f4ce7eccaf3241687080055fb
Reviewed-on: http://gerrit.dmdirc.com/1056
Automatic-Compile: Gregory Holmes <greg@dmdirc.com>
Reviewed-by: Gregory Holmes <greg@dmdirc.com>
tags/0.6.4rc1
Chris Smith 14 years ago
parent
commit
7853852c5f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/dmdirc/ui/messages/Styliser.java

+ 1
- 1
src/com/dmdirc/ui/messages/Styliser.java View File

@@ -82,7 +82,7 @@ public class Styliser implements ConfigChangeListener {
82 82
     
83 83
     /** Regexp to match characters which shouldn't be used in channel links. */
84 84
     private static final String RESERVED_CHARS = "[^\\s" + CODE_BOLD + CODE_COLOUR
85
-            + CODE_STOP + CODE_HEXCOLOUR + CODE_FIXED + CODE_ITALIC +
85
+            + CODE_STOP + CODE_HEXCOLOUR + CODE_FIXED + CODE_ITALIC
86 86
             + CODE_UNDERLINE + CODE_CHANNEL + CODE_NICKNAME + CODE_NEGATE + "\",]";
87 87
     
88 88
     /** Defines all characters treated as trailing punctuation that are illegal in URLs. */

Loading…
Cancel
Save