Closed (works as designed)
Project:
WordPress Comments
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
20 Jul 2008 at 18:07 UTC
Updated:
18 Oct 2008 at 17:02 UTC
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.