Mercurial > hg > rc2
diff program/lib/Roundcube/rcube.php @ 5:3a5f959af5ae
debugging aids, all commented out
author | Charlie Root |
---|---|
date | Thu, 30 Aug 2018 16:15:17 -0400 |
parents | 4681f974d28b |
children |
line wrap: on
line diff
--- a/program/lib/Roundcube/rcube.php Thu Jan 18 07:47:04 2018 -0500 +++ b/program/lib/Roundcube/rcube.php Thu Aug 30 16:15:17 2018 -0400 @@ -620,7 +620,6 @@ if (($setval = $attrib[strtolower($_SESSION['language'])]) || ($setval = $attrib['en_us'])) { $this->texts[$name] = $setval; } - // check for text with domain if ($domain && ($text = $this->texts[$domain.'.'.$name])) { } @@ -628,7 +627,6 @@ else if (!($text = $this->texts[$name])) { return "[$name]"; } - // replace vars in text if (is_array($attrib['vars'])) { foreach ($attrib['vars'] as $var_key => $var_value) { @@ -653,7 +651,6 @@ if (isset($case_mode)) { $text = mb_convert_case($text, $case_mode); } - return $text; }