diff options
| author | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-12-07 11:58:50 +0000 |
|---|---|---|
| committer | Dominik Dröscher <dhn2@users.sourceforge.net> | 2006-12-07 11:58:50 +0000 |
| commit | c848979cdd668d4188ef921ee2f214cef595abf4 (patch) | |
| tree | 8cc013be3945877d31cbb54c56080dcc213c4212 | |
| parent | c6c994eaefab891069ead91cd3e426b83b428663 (diff) | |
| download | forums-c848979cdd668d4188ef921ee2f214cef595abf4.tar forums-c848979cdd668d4188ef921ee2f214cef595abf4.tar.gz forums-c848979cdd668d4188ef921ee2f214cef595abf4.tar.bz2 forums-c848979cdd668d4188ef921ee2f214cef595abf4.tar.xz forums-c848979cdd668d4188ef921ee2f214cef595abf4.zip | |
No need to show the current messages / total messages data when unlimited private messages are allowed.
git-svn-id: file:///svn/phpbb/trunk@6722 89ea8834-ac86-4346-8a33-228a782c2dd0
| -rw-r--r-- | phpBB/styles/subSilver/template/ucp_pm_message_header.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/phpBB/styles/subSilver/template/ucp_pm_message_header.html b/phpBB/styles/subSilver/template/ucp_pm_message_header.html index f3c5cc828b..d73d744c15 100644 --- a/phpBB/styles/subSilver/template/ucp_pm_message_header.html +++ b/phpBB/styles/subSilver/template/ucp_pm_message_header.html @@ -9,7 +9,11 @@ <table width="100%" cellspacing="1"> <tr> <td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td> - <td class="gensmall" nowrap="nowrap" width="100%"> [ <b>{FOLDER_CUR_MESSAGES}</b>/{FOLDER_MAX_MESSAGES} {L_MESSAGES} ({FOLDER_PERCENT}%) ] </td> + <!-- IF FOLDER_MAX_MESSAGES neq 0 --> + <td class="gensmall" nowrap="nowrap" width="100%"> [ <b>{FOLDER_CUR_MESSAGES}</b>/{FOLDER_MAX_MESSAGES} {L_MESSAGES} ({FOLDER_PERCENT}%) ] </td> + <!-- ELSE --> + <td class="gensmall" nowrap="nowrap" width="100%"> [ <b>{FOLDER_CUR_MESSAGES}</b> {L_MESSAGES} ] </td> + <!-- ENDIF --> </tr> </table> <!-- ENDIF --> |
