diff options
author | filip <filip.komar@gmail.com> | 2016-09-18 12:11:51 +0200 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2016-09-18 12:11:51 +0200 |
commit | 0457eba2b6dd9facbbd97e5d68c127244a19f5c1 (patch) | |
tree | aea5be64ad6b11bd2ef02f24e23d3bf1c5925a92 /langs/lib.php | |
parent | fa51ce873865d8c389019090476ea14300fc29a6 (diff) | |
download | www-0457eba2b6dd9facbbd97e5d68c127244a19f5c1.tar www-0457eba2b6dd9facbbd97e5d68c127244a19f5c1.tar.gz www-0457eba2b6dd9facbbd97e5d68c127244a19f5c1.tar.bz2 www-0457eba2b6dd9facbbd97e5d68c127244a19f5c1.tar.xz www-0457eba2b6dd9facbbd97e5d68c127244a19f5c1.zip |
bug fix: no more double empty lines in comparison table
Diffstat (limited to 'langs/lib.php')
-rw-r--r-- | langs/lib.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/langs/lib.php b/langs/lib.php index 522e80a14..b984d3223 100644 --- a/langs/lib.php +++ b/langs/lib.php @@ -131,7 +131,7 @@ function _po_diff($locale, $resource, $source_l = NULL, $path = NULL, $compared if (!isset($target_l[$msgid])) { // adding fuzzy or missing string $fuzzy_or_missing[] = $msgid; - $msgstr_target_l = NULL; + $msgstr_target_l[0] = ''; } else { $msgstr_target_l = $target_l[$msgid][$context_or_num]; // are there any plurals untranslated? |