aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-09-08 22:12:44 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-09-08 22:12:44 +0200
commite00697f3a17f2991a5073729d70bd0c1053a40a3 (patch)
treea66325ac59cda2136044e646e3858fdd68543e2b /phpBB
parent3458aa2482484dfa32c8aa802680cf3f0b61161a (diff)
parentaefd96e604e5711591ba2b1adbeca1cd17e8c230 (diff)
downloadforums-e00697f3a17f2991a5073729d70bd0c1053a40a3.tar
forums-e00697f3a17f2991a5073729d70bd0c1053a40a3.tar.gz
forums-e00697f3a17f2991a5073729d70bd0c1053a40a3.tar.bz2
forums-e00697f3a17f2991a5073729d70bd0c1053a40a3.tar.xz
forums-e00697f3a17f2991a5073729d70bd0c1053a40a3.zip
Merge pull request #2926 from Senky/ticket/13038
[ticket/13038] Link user post tally to their posts * Senky/ticket/13038: [ticket/13038] Add link to number of posts of user in viewtopic
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/styles/prosilver/template/viewtopic_body.html2
-rw-r--r--phpBB/styles/prosilver/theme/content.css4
2 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/viewtopic_body.html b/phpBB/styles/prosilver/template/viewtopic_body.html
index 7ed8569798..5c8879af88 100644
--- a/phpBB/styles/prosilver/template/viewtopic_body.html
+++ b/phpBB/styles/prosilver/template/viewtopic_body.html
@@ -137,7 +137,7 @@
<!-- IF postrow.RANK_TITLE or postrow.RANK_IMG --><dd class="profile-rank">{postrow.RANK_TITLE}<!-- IF postrow.RANK_TITLE and postrow.RANK_IMG --><br /><!-- ENDIF -->{postrow.RANK_IMG}</dd><!-- ENDIF -->
- <!-- 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> <!-- IF postrow.U_SEARCH !== '' --><a href="{postrow.U_SEARCH}"><!-- ENDIF -->{postrow.POSTER_POSTS}<!-- IF postrow.U_SEARCH !== '' --></a><!-- ENDIF --></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> {postrow.POSTER_WARNINGS}</dd><!-- ENDIF -->
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css
index fa23a665f1..9388496c53 100644
--- a/phpBB/styles/prosilver/theme/content.css
+++ b/phpBB/styles/prosilver/theme/content.css
@@ -736,6 +736,10 @@ fieldset.polls dd div {
max-width: 100%;
}
+.postprofile .profile-posts a {
+ font-weight: normal;
+}
+
dd.profile-warnings {
font-weight: bold;
}