mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/12488] Removed <em> and removed anonymous check
PHPBB3-12488
This commit is contained in:
parent
2c5a2a1390
commit
cefeb7f752
4 changed files with 4 additions and 5 deletions
|
@ -129,7 +129,7 @@
|
||||||
|
|
||||||
<!-- IF postrow.POSTER_POSTS != '' --><dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> {postrow.POSTER_POSTS}</dd><!-- ENDIF -->
|
<!-- IF postrow.POSTER_POSTS != '' --><dd class="profile-posts"><strong>{L_POSTS}{L_COLON}</strong> {postrow.POSTER_POSTS}</dd><!-- ENDIF -->
|
||||||
<!-- IF postrow.POSTER_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd><!-- ENDIF -->
|
<!-- IF postrow.POSTER_JOINED --><dd class="profile-joined"><strong>{L_JOINED}{L_COLON}</strong> {postrow.POSTER_JOINED}</dd><!-- ENDIF -->
|
||||||
<!-- IF postrow.POSTER_WARNINGS --><dd class="profile-warnings"><strong>{L_WARNINGS}{L_COLON}</strong> <em>{postrow.POSTER_WARNINGS}</em></dd><!-- ENDIF -->
|
<!-- IF postrow.POSTER_WARNINGS --><dd class="profile-warnings"><strong>{L_WARNINGS}{L_COLON}</strong> {postrow.POSTER_WARNINGS}</dd><!-- ENDIF -->
|
||||||
|
|
||||||
<!-- IF postrow.S_PROFILE_FIELD1 -->
|
<!-- IF postrow.S_PROFILE_FIELD1 -->
|
||||||
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
|
<!-- Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
|
||||||
|
|
|
@ -660,7 +660,7 @@ fieldset.polls dd div {
|
||||||
background-image: url("./en/icon_user_online.gif");
|
background-image: url("./en/icon_user_online.gif");
|
||||||
}
|
}
|
||||||
|
|
||||||
dd.profile-warnings em {
|
dd.profile-warnings {
|
||||||
color: #BC2A4D;
|
color: #BC2A4D;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -731,8 +731,7 @@ fieldset.polls dd div {
|
||||||
height: auto !important;
|
height: auto !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
dd.profile-warnings em {
|
dd.profile-warnings {
|
||||||
font-style: normal;
|
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1641,7 +1641,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
|
||||||
'POSTER_JOINED' => $user_cache[$poster_id]['joined'],
|
'POSTER_JOINED' => $user_cache[$poster_id]['joined'],
|
||||||
'POSTER_POSTS' => $user_cache[$poster_id]['posts'],
|
'POSTER_POSTS' => $user_cache[$poster_id]['posts'],
|
||||||
'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'],
|
'POSTER_AVATAR' => $user_cache[$poster_id]['avatar'],
|
||||||
'POSTER_WARNINGS' => ($auth->acl_get('m_warn') && $poster_id != ANONYMOUS) ? $user_cache[$poster_id]['warnings'] : '',
|
'POSTER_WARNINGS' => $auth->acl_get('m_warn' ? $user_cache[$poster_id]['warnings'] : '',
|
||||||
'POSTER_AGE' => $user_cache[$poster_id]['age'],
|
'POSTER_AGE' => $user_cache[$poster_id]['age'],
|
||||||
|
|
||||||
'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false),
|
'POST_DATE' => $user->format_date($row['post_time'], false, ($view == 'print') ? true : false),
|
||||||
|
|
Loading…
Add table
Reference in a new issue