diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-06-18 01:42:59 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-06-18 01:42:59 -0700 |
commit | 06f37b5a53c7dc9b8d79355dcc67c9d378a74cc6 (patch) | |
tree | a2e9186f07366b97ddc8bd62af7d7e052755651a | |
parent | 34dd08e150583f62d97ff7fd373d2f628649ea32 (diff) |
Fix/remove unnecessary escaping of double quotes in l10n scanner.
-rw-r--r-- | modules/gallery/helpers/l10n_scanner.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/helpers/l10n_scanner.php b/modules/gallery/helpers/l10n_scanner.php index 80b6f01c..bae455f2 100644 --- a/modules/gallery/helpers/l10n_scanner.php +++ b/modules/gallery/helpers/l10n_scanner.php @@ -149,6 +149,6 @@ class l10n_scanner_Core { } else { $str = strtr($str, array("\\'" => "'", "\\\\" => "\\")); } - return addcslashes($str, "\0..\37\\\""); + return $str; } } |