forked from extern/egroupware
"fix to cope with $vars[0] containing '%2' in lang() calls"
This commit is contained in:
parent
1fa1b92a56
commit
df8217ff61
@ -197,8 +197,6 @@ class translation
|
|||||||
*/
|
*/
|
||||||
static function translate($key, $vars=false, $not_found='*' )
|
static function translate($key, $vars=false, $not_found='*' )
|
||||||
{
|
{
|
||||||
static $placeholders = array('%1','%2','%3','%4','%5','%6','%7','%8','%9','%10');
|
|
||||||
|
|
||||||
if (!self::$lang_arr)
|
if (!self::$lang_arr)
|
||||||
{
|
{
|
||||||
self::init();
|
self::init();
|
||||||
@ -224,6 +222,10 @@ class translation
|
|||||||
{
|
{
|
||||||
if (count($vars) > 1)
|
if (count($vars) > 1)
|
||||||
{
|
{
|
||||||
|
static $placeholders = array('%2','%1','|%2|','%3','%4','%5','%6','%7','%8','%9','%10');
|
||||||
|
// to cope with $vars[0] containing '%2' (eg. an urlencoded path like a referer),
|
||||||
|
// we first replace '%2' in $ret with '|%2|' and then use that as 2. placeholder
|
||||||
|
array_unshift($vars,'|%2|'); // push '|%2|' as first replacement on $vars
|
||||||
$ret = str_replace($placeholders,$vars,$ret);
|
$ret = str_replace($placeholders,$vars,$ret);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user