From 3fc38cb55277098e234734baa5bb7513cc974109 Mon Sep 17 00:00:00 2001 From: czaks Date: Wed, 3 Jul 2013 00:50:43 -0400 Subject: [PATCH] tools/inc/lib/jsgettext/: misc fixes --- tools/inc/lib/jsgettext/JSParser.php | 4 ++-- tools/inc/lib/jsgettext/PoeditParser.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/inc/lib/jsgettext/JSParser.php b/tools/inc/lib/jsgettext/JSParser.php index f3cec7f7..adba59bc 100644 --- a/tools/inc/lib/jsgettext/JSParser.php +++ b/tools/inc/lib/jsgettext/JSParser.php @@ -41,7 +41,7 @@ class JSParser { } public function parse() { - $output = htmlspecialchars($this->content, ENT_NOQUOTES); + $output = $this->content; //htmlspecialchars($this->content, ENT_NOQUOTES); // extract reg exps $output = preg_replace_callback( @@ -91,4 +91,4 @@ class JSParser { return $strings; } } -?> \ No newline at end of file +?> diff --git a/tools/inc/lib/jsgettext/PoeditParser.php b/tools/inc/lib/jsgettext/PoeditParser.php index 5ed0ac00..eebd816e 100644 --- a/tools/inc/lib/jsgettext/PoeditParser.php +++ b/tools/inc/lib/jsgettext/PoeditParser.php @@ -66,7 +66,7 @@ class PoeditParser { } public function toJSON($outputFilename, $varName = 'l10n') { - $str = "$varName = " . $this->getJSON(); + $str = "$varName = " . $this->getJSON() . ";"; return file_put_contents($outputFilename, $str) !== false; } @@ -80,4 +80,4 @@ class PoeditParser { } -?> \ No newline at end of file +?>