From 4bdc495d01a0aefc007fa7f33434f6cc101aa6bd Mon Sep 17 00:00:00 2001 From: Liam Date: Sat, 13 Feb 2010 01:49:39 -0500 Subject: [PATCH] Corrected a typo in the string.inc file. (bug 4207, r=fyren) --- plugins/include/string.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/string.inc b/plugins/include/string.inc index 11cba73f..29232deb 100644 --- a/plugins/include/string.inc +++ b/plugins/include/string.inc @@ -379,7 +379,7 @@ native bool:IsCharLower(chr); /** * Strips a quote pair off a string if it exists. That is, the following - * replace rule is applied once: $"(.*)"^ -> $\1^ + * replace rule is applied once: ^"(.*)"$ -> ^\1$ * * Note that the leading and trailing quotes will only be removed if both * exist. Otherwise, the string is left unmodified. This function should