diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Console/LocalConsole.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Console/LocalConsole.cs b/OpenSim/Framework/Console/LocalConsole.cs index a967db6..b17b8e0 100644 --- a/OpenSim/Framework/Console/LocalConsole.cs +++ b/OpenSim/Framework/Console/LocalConsole.cs | |||
@@ -283,7 +283,7 @@ namespace OpenSim.Framework.Console | |||
283 | { | 283 | { |
284 | string regex = @"^(?<Front>.*?)\[(?<Category>[^\]]+)\]:?(?<End>.*)"; | 284 | string regex = @"^(?<Front>.*?)\[(?<Category>[^\]]+)\]:?(?<End>.*)"; |
285 | 285 | ||
286 | Regex RE = new Regex(regex, RegexOptions.Multiline); | 286 | Regex RE = new Regex(regex, RegexOptions.Singleline); |
287 | MatchCollection matches = RE.Matches(text); | 287 | MatchCollection matches = RE.Matches(text); |
288 | 288 | ||
289 | if (matches.Count == 1) | 289 | if (matches.Count == 1) |