Actions
Bug #2389
closedBackend html: use Th instead of T function inside HTML
Description
e.g.:
'<th colspan="2">' . CBTxt::T( 'Plugin' ) . '</th>'
should be:
'<th colspan="2">' . CBTxt::Th( 'Plugin' ) . '</th>'
This ensures much easier translation, and also proper htmlspecialcharing of texts.
Actions