From 382664105bf42409d2087a912671dd7cdafb323f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Thu, 20 Sep 2007 08:30:34 +0000 Subject: [PATCH] #173494 by scor: removing a strange string concatenation from common.inc --- includes/common.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/common.inc b/includes/common.inc index d781cbc4d52..9c233c2d585 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1984,7 +1984,7 @@ function _packer_apply($script, $regexps, $escape = FALSE) { if ($escape) { // Remove escaped characters $script = preg_replace_callback( - '/\\\\(.)' .'/', + '/\\\\(.)/', '_packer_escape_char', $script ); @@ -2002,7 +2002,7 @@ function _packer_apply($script, $regexps, $escape = FALSE) { // Restore escaped characters _packer_unescape_char(NULL, $escaped); $script = preg_replace_callback( - '/\\\\' .'/', + '/\\\\/', '_packer_unescape_char', $script );