summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-09-20 08:30:34 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-09-20 08:30:34 +0000
commit382664105bf42409d2087a912671dd7cdafb323f (patch)
tree302b2e9645b6ab58076dcf533e3865d1b9ff38e0
parentad6b5dbef0511717a90fabbfb42b093f4502ec34 (diff)
downloadbrdo-382664105bf42409d2087a912671dd7cdafb323f.tar.gz
brdo-382664105bf42409d2087a912671dd7cdafb323f.tar.bz2
#173494 by scor: removing a strange string concatenation from common.inc
-rw-r--r--includes/common.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/common.inc b/includes/common.inc
index d781cbc4d..9c233c2d5 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
);