I have a little question. In the template "dto_garage_popup_menu"
Code:
<if condition="$use_username_in_link">
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
<else />
Garage
</if>
I tried this an always "Garage" appears.
The fact that you can?t edit the phrase $vbphrase[xs_garage] (it?s always ?{1}?s Garage) doesn?t makes it senseless?
Wouldn?t it better then instead of Garage would appear {1}?s Garage in the Postbit?
Code:
<if condition="$use_username_in_link">
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
</if>
Doesn?t works? Why?
but
Code:
<if condition="$use_username_in_link">
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
<else />
<phrase 1="$userinfo[username]">$vbphrase[xs_garage] </phrase>
</if>
Does what I want.

It displays the phrase for example Kolbi?s Garage
Or don?t I understand this code...