2
It would seem that the same constants are named in multiple language files.
This can happen if for example:
WF_Sections uses:
_SECONDS
AND
XP_Weather ALSO uses:
_SECONDS
AND
Both modules (through either being inside the module, or displaying a block) end up trying to declare different values for the same constants.
They are just notices, and unless you see a problem, it's no big deal.
You can get rid of them by:
1)Not using the conflicting modules/blocks in tandem.
2)Changing the constant names (in the calling .php or .html files and the lang files) in one module or the other.
OR if it's not causing probs... just ignore it.. worst case is that in one of the modules will display inappropriate text, and that should be easy enough to see. (with debug off these notices will not appear)...
Often times, the constant may not even be used where it is throwing the notice, but is called in a background process (say when the block is generated). That's why I say... if things look right, just ignore it, as it won't affect functionality in any way aside from what I described above.