diff options
author | Mario <mario@mariovavti.com> | 2018-09-14 10:48:03 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-09-14 10:48:03 +0200 |
commit | ab611e9ef3a2b4bdd4b4f33d72e43c1a6d28331f (patch) | |
tree | 0064b785a70012694292c06349d5e7c162c28c5a | |
parent | f9d43479f29d350b8d0aaf19a0773e372ff3e542 (diff) | |
parent | 240d4704aacbf7038ea9c762bc872d8206ac42ae (diff) | |
download | volse-hubzilla-ab611e9ef3a2b4bdd4b4f33d72e43c1a6d28331f.tar.gz volse-hubzilla-ab611e9ef3a2b4bdd4b4f33d72e43c1a6d28331f.tar.bz2 volse-hubzilla-ab611e9ef3a2b4bdd4b4f33d72e43c1a6d28331f.zip |
Merge branch 'patch-2' into 'dev'
php2po.php unify quote/unquote
See merge request hubzilla/core!1272
-rw-r--r-- | util/php2po.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/php2po.php b/util/php2po.php index c710b86fe..ca33f8b01 100644 --- a/util/php2po.php +++ b/util/php2po.php @@ -35,7 +35,7 @@ if (!preg_match("/^msgstr\[[1-9]/",$l)) { if ($k!="" && (substr($l,0,7)=="msgstr " || substr($l,0,8)=="msgstr[0")){ $ink = False; - $k = stripslashes($k); + $k = stripcslashes($k); $v = ""; if (isset(App::$strings[$k])) { $v = App::$strings[$k]; |