diff options
author | Henry Sudhof <kellanved@phpbb.com> | 2008-09-24 10:43:00 +0000 |
---|---|---|
committer | Henry Sudhof <kellanved@phpbb.com> | 2008-09-24 10:43:00 +0000 |
commit | 3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544 (patch) | |
tree | 83427e757c250466933bd3c3a777787bdb5b78f2 | |
parent | 40ae0658f0f8655f2688377dc37b9a6cdb661b5f (diff) | |
download | forums-3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544.tar forums-3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544.tar.gz forums-3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544.tar.bz2 forums-3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544.tar.xz forums-3bcf4ecd96bd1f6e821d44e73d71459b0e1a9544.zip |
Show headers if no leaders are on the page
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8927 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/styles/prosilver/template/memberlist_body.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/memberlist_body.html b/phpBB/styles/prosilver/template/memberlist_body.html index 85f92ebe8a..7bfa02175d 100644 --- a/phpBB/styles/prosilver/template/memberlist_body.html +++ b/phpBB/styles/prosilver/template/memberlist_body.html @@ -109,11 +109,19 @@ <table class="table1" cellspacing="1"> <thead> <tr> + <!-- IF not S_LEADERS_SET --> + <th class="name"><span class="rank-img"><a href="{U_SORT_RANK}">{L_RANK}</a></span><a href="{U_SORT_USERNAME}"><!-- IF S_SHOW_GROUP -->{L_GROUP_MEMBERS}<!-- ELSE -->{L_USERNAME}<!-- ENDIF --></a></th> + <th class="posts"><a href="{U_SORT_POSTS}#memberlist">{L_POSTS}</a></th> + <th class="info"><a href="{U_SORT_WEBSITE}#memberlist">{L_WEBSITE}</a>{L_COMMA_SEPARATOR}<a href="{U_SORT_LOCATION}">{L_LOCATION}</a></th> + <th class="joined"><a href="{U_SORT_JOINED}#memberlist">{L_JOINED}</a></th> + <!-- IF U_SORT_ACTIVE --><th class="active"><a href="{U_SORT_ACTIVE}#memberlist">{L_LAST_ACTIVE}</a></th><!-- ENDIF --> + <!-- ELSE --> <th class="name">{L_GROUP_MEMBERS}</th> <th class="posts"> </th> <th class="info"> </th> <th class="joined"> </th> <!-- IF U_SORT_ACTIVE --><th class="active"> </th><!-- ENDIF --> + <!-- ENDIF --> </tr> </thead> <tbody> |