diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-20 08:30:34 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-09-20 08:30:34 +0000 |
commit | 382664105bf42409d2087a912671dd7cdafb323f (patch) | |
tree | 302b2e9645b6ab58076dcf533e3865d1b9ff38e0 /includes | |
parent | ad6b5dbef0511717a90fabbfb42b093f4502ec34 (diff) | |
download | brdo-382664105bf42409d2087a912671dd7cdafb323f.tar.gz brdo-382664105bf42409d2087a912671dd7cdafb323f.tar.bz2 |
#173494 by scor: removing a strange string concatenation from common.inc
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 4 |
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 ); |