Mark
A couple of points about the language issues earlier.
1. You have
Code: Select all
'TOTAL_USERS' => sprintf($user->lang['DIGESTS_LIST_USERS'], $total_users),
This is not correct. Firstly
lang
does not use square brackets
[]
any more - it uses round brackets
()
and
sprintf
is not used. That code should be
Code: Select all
'TOTAL_USERS' => sprintf($user->lang('DIGESTS_LIST_USERS', $total_users),
2. The other issue
Code: Select all
<h4>{L_UCP_DIGESTS_BASICS} {L_OPTIONS}:</h4>
<h4>{L_UCP_DIGESTS_FORUMS_SELECTION} {L_OPTIONS}:</h4>
<h4>{L_UCP_DIGESTS_POST_FILTERS} {L_OPTIONS}:</h4>
<h4>{L_UCP_DIGESTS_ADDITIONAL_CRITERIA} {L_OPTIONS}:</h4>
I think that you should consider making it into one language variable otherwise there may be a problem with some rtl language translations.