diff options
| author | Meik Sievertsen <acydburn@phpbb.com> | 2007-04-26 18:41:26 +0000 |
|---|---|---|
| committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-04-26 18:41:26 +0000 |
| commit | fc295f5f0eef6b761c7c2d825bc01501e8882a25 (patch) | |
| tree | 8a2b6d3519dffe95bb03422ecdfe58d90a45eeff /phpBB/styles/subsilver2 | |
| parent | 78f16d70a292afee3470710669d4082d5b6212eb (diff) | |
| download | forums-fc295f5f0eef6b761c7c2d825bc01501e8882a25.tar forums-fc295f5f0eef6b761c7c2d825bc01501e8882a25.tar.gz forums-fc295f5f0eef6b761c7c2d825bc01501e8882a25.tar.bz2 forums-fc295f5f0eef6b761c7c2d825bc01501e8882a25.tar.xz forums-fc295f5f0eef6b761c7c2d825bc01501e8882a25.zip | |
checking in some fixes. ;) Most of them are really minor, including:
- correctly enter report notification into db
- fix double-quote pm issue
git-svn-id: file:///svn/phpbb/trunk@7409 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subsilver2')
| -rw-r--r-- | phpBB/styles/subsilver2/template/ucp_pm_options.html | 4 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/ucp_profile_avatar.html | 5 |
2 files changed, 7 insertions, 2 deletions
diff --git a/phpBB/styles/subsilver2/template/ucp_pm_options.html b/phpBB/styles/subsilver2/template/ucp_pm_options.html index 7e2326c084..4802b06720 100644 --- a/phpBB/styles/subsilver2/template/ucp_pm_options.html +++ b/phpBB/styles/subsilver2/template/ucp_pm_options.html @@ -76,8 +76,8 @@ </tr> <!-- BEGIN rule --> <tr> - <td class="row1" width="25" align="center"><span class="gen">{rule.COUNT}</span></td> - <td class="row2" width="120"><span class="gen">{rule.CHECK}</span></td> + <td class="row1" width="25" align="center"><span class="gen">#{rule.COUNT}</span></td> + <td class="row2" width="120"><span class="gen"><strong>{L_IF}</strong> {rule.CHECK}</span></td> <td class="row1" width="120"><span class="gen">{rule.RULE}</span></td> <td class="row2" width="120"><span class="gen"><!-- IF rule.STRING -->{rule.STRING}<!-- ENDIF --></span></td> <td class="row1"><span class="gen">{rule.ACTION}<!-- IF rule.FOLDER --> -> {rule.FOLDER}<!-- ENDIF --></span></td> diff --git a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html index 00a2e4f415..27e9118b96 100644 --- a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html +++ b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html @@ -16,6 +16,11 @@ <!-- ELSE --><img src="{T_THEME_PATH}/images/no_avatar.gif" alt="" /> <!-- ENDIF --></td> </tr> +<!-- IF not S_UPLOAD_AVATAR_FILE and not S_UPLOAD_AVATAR_URL and not S_LINK_AVATAR and not S_DISPLAY_GALLERY --> + <tr> + <td class="row3" colspan="2" align="center">{L_AVATAR_FEATURES_DISABLED}</td> + </tr> +<!-- ENDIF --> <!-- IF S_UPLOAD_AVATAR_FILE --> <tr> <td class="row1" width="35%"><b class="genmed">{L_UPLOAD_AVATAR_FILE}: </b></td> |
