diff options
author | Vjacheslav Trushkin <arty@phpbb.com> | 2011-10-18 21:37:51 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <arty@phpbb.com> | 2011-10-18 21:37:51 +0300 |
commit | c8399b8e30769bcc34feaee4df8f4dfddaa9576f (patch) | |
tree | 8d495104ea67d071690fdd6da945c02e8d9c29ae /phpBB/styles/prosilver/template/viewtopic_body.html | |
parent | cfb51358058e30e4303c1fdc10920c98a568871d (diff) | |
download | forums-c8399b8e30769bcc34feaee4df8f4dfddaa9576f.tar forums-c8399b8e30769bcc34feaee4df8f4dfddaa9576f.tar.gz forums-c8399b8e30769bcc34feaee4df8f4dfddaa9576f.tar.bz2 forums-c8399b8e30769bcc34feaee4df8f4dfddaa9576f.tar.xz forums-c8399b8e30769bcc34feaee4df8f4dfddaa9576f.zip |
[ticket/10422] Invalid "if" in viewtopic_body.html
Fixing incorrect "IF" in viewtopic_body.html
PHPBB3-10422
Diffstat (limited to 'phpBB/styles/prosilver/template/viewtopic_body.html')
-rw-r--r-- | phpBB/styles/prosilver/template/viewtopic_body.html | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html index 32292f89ef..57de96d853 100644 --- a/phpBB/styles/prosilver/template/viewtopic_body.html +++ b/phpBB/styles/prosilver/template/viewtopic_body.html @@ -4,13 +4,10 @@ <!-- NOTE: remove the style="display: none" when you want to have the forum description on the topic body --> <!-- IF FORUM_DESC --><div style="display: none !important;">{FORUM_DESC}<br /></div><!-- ENDIF --> -<!-- IF MODERATORS or U_MCP --> - <p> - <!-- IF MODERATORS --> - <strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS} - <!-- ENDIF --> - - </p> +<!-- IF MODERATORS --> +<p> + <strong><!-- IF S_SINGLE_MODERATOR -->{L_MODERATOR}<!-- ELSE -->{L_MODERATORS}<!-- ENDIF -->:</strong> {MODERATORS} +</p> <!-- ENDIF --> <!-- IF S_FORUM_RULES --> |