Files
winix/html/slog.html
Tomasz Sowa 0e9f587591 added: to IsWhite (core/misc)
other unicode white characters
       25 characters -- without a new line character (10)
added: config option: account_need_email_verification
       if true then when creating an account a user has to provide
       his email address and a message with an activation link will be sent 
       back to him
added: 'pw' winix function (not finished yet)
       at the moment only one parameter 'activate'



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@810 e52654a7-88a9-db11-a3e9-0013d4bc506e
2012-02-28 21:09:44 +00:00

32 lines
416 B
HTML
Executable File

[if slog_tab]
<table class="slog">
[for slog_tab]
<tr>
<td class="[if slog_tab_is_error]slogerror[end][if slog_tab_is_warning]slogwarning[end][if slog_tab_is_info]sloginfo[end]">
[if slog_tab_is_info]
{slog_info}:
[end]
[if slog_tab_is_warning]
{slog_warning}:
[end]
[if slog_tab_is_error]
{slog_error}:
[end]
</td>
<td>
[slog_tab_print]
</td>
</tr>
[end]
</table>
[end]