Just noticed that module uses:
$t('bla bla');
But it sould be:
t('bla bla');
Without '$' cause this a function, not a variable.
Jérémy
Just noticed that module uses:
$t('bla bla');
But it sould be:
t('bla bla');
Without '$' cause this a function, not a variable.
Jérémy
Comments
Comment #1
mfer commentedEarlier in that section of code you'll see
This means that $t references either t() or st() depending on the circumstance. So it works and looks to be designed to work that way.