Bug XF.phrase fails if a variables appears multiple times

There is a bug in this version
K

Kirby

Guest
If a phrase uses the same variable multiple times, only the first occurance gets replaced.

Lets' a asume we have a phrase hello_x_how_do_you_feel_today_x with content Hello {userName}. How do you feel today {userName}?

Using
Code:

{{ phrase('hello_x_how_do_you_feel_today_x', {'userName': 'Kirby'}) }}
in templates works as expected, eg. Hello Kirby. How do you feel today Kirby?

But using
Code:

XF.phrase('hello_x_how_do_you_feel_today_x', {'userName'...

Read more

Continue reading...