diff options
| author | Henry Sudhof <kellanved@phpbb.com> | 2007-05-07 11:37:06 +0000 |
|---|---|---|
| committer | Henry Sudhof <kellanved@phpbb.com> | 2007-05-07 11:37:06 +0000 |
| commit | 56f4c786a52a15210940d5c7151ae46535456eb9 (patch) | |
| tree | ecd7d172a495625a320717fa1a1074ede8cca14e /phpBB/styles | |
| parent | 1eee5ca388e405728e7c31336c8ff67cddfaee39 (diff) | |
| download | forums-56f4c786a52a15210940d5c7151ae46535456eb9.tar forums-56f4c786a52a15210940d5c7151ae46535456eb9.tar.gz forums-56f4c786a52a15210940d5c7151ae46535456eb9.tar.bz2 forums-56f4c786a52a15210940d5c7151ae46535456eb9.tar.xz forums-56f4c786a52a15210940d5c7151ae46535456eb9.zip | |
Fixing a bug nobody reported so far: the avatar gallery displayed a faulty message about avatars being disabled.
Also fixes #10531 (let's pretend that it isn't a new feature. It's neat, though)
git-svn-id: file:///svn/phpbb/trunk@7495 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/prosilver/template/ucp_avatar_options.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/ucp_profile_avatar.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ucp_avatar_options.html b/phpBB/styles/prosilver/template/ucp_avatar_options.html index 8babd7fc1b..2027ad6ea0 100644 --- a/phpBB/styles/prosilver/template/ucp_avatar_options.html +++ b/phpBB/styles/prosilver/template/ucp_avatar_options.html @@ -1,7 +1,7 @@ <div class="panel"> <div class="inner"><span class="corners-top"><span></span></span> - <!-- IF not S_UPLOAD_AVATAR_FILE and not S_UPLOAD_AVATAR_URL and not S_LINK_AVATAR and not S_DISPLAY_GALLERY --> + <!-- IF not S_UPLOAD_AVATAR_FILE and not S_UPLOAD_AVATAR_URL and not S_LINK_AVATAR and not S_IN_AVATAR_GALLERY --> <p>{L_AVATAR_FEATURES_DISABLED}</p> <!-- ENDIF --> diff --git a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html index 27e9118b96..2c20a5f3f2 100644 --- a/phpBB/styles/subsilver2/template/ucp_profile_avatar.html +++ b/phpBB/styles/subsilver2/template/ucp_profile_avatar.html @@ -16,7 +16,7 @@ <!-- 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 --> +<!-- IF not S_UPLOAD_AVATAR_FILE and not S_UPLOAD_AVATAR_URL and not S_LINK_AVATAR and not S_IN_AVATAR_GALLERY --> <tr> <td class="row3" colspan="2" align="center">{L_AVATAR_FEATURES_DISABLED}</td> </tr> |
