Created
January 21, 2022 20:56
-
-
Save marc1706/4c67479f0731c4041efd08e7979505cf to your computer and use it in GitHub Desktop.
prosilver changes 3.3.5 to 3.3.6-RC1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/theme/content.css b/phpBB/styles/prosilver/theme/content.css | |
index 111d24674f..850281c8c7 100644 | |
--- a/phpBB/styles/prosilver/theme/content.css | |
+++ b/phpBB/styles/prosilver/theme/content.css | |
@@ -735,6 +735,10 @@ fieldset.polls dd div { | |
margin-bottom: 10px; | |
} | |
+.profile-rank img { | |
+ max-width: 160px; | |
+} | |
+ | |
/* Post-profile avatars */ | |
.postprofile .has-avatar .avatar-container { | |
margin-bottom: 3px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/styles/prosilver/template/memberlist_email.html b/phpBB/styles/prosilver/template/memberlist_email.html | |
index eea699da08..695fb865b6 100644 | |
--- a/phpBB/styles/prosilver/template/memberlist_email.html | |
+++ b/phpBB/styles/prosilver/template/memberlist_email.html | |
@@ -71,7 +71,7 @@ | |
<dl> | |
<dt><label for="lang">{L_DEST_LANG}{L_COLON}</label><br /> | |
<span>{L_DEST_LANG_EXPLAIN}</span></dt> | |
- <dd><select name="lang">{S_LANG_OPTIONS}</select></dd> | |
+ <dd><select name="lang" id="lang">{S_LANG_OPTIONS}</select></dd> | |
</dl> | |
<!-- ENDIF --> | |
<dl> | |
diff --git a/phpBB/styles/prosilver/template/posting_attach_body.html b/phpBB/styles/prosilver/template/posting_attach_body.html | |
index f304d727f2..378fd118cc 100644 | |
--- a/phpBB/styles/prosilver/template/posting_attach_body.html | |
+++ b/phpBB/styles/prosilver/template/posting_attach_body.html | |
@@ -8,7 +8,7 @@ | |
<dl> | |
<dt><label for="fileupload">{L_FILENAME}{L_COLON}</label></dt> | |
<dd> | |
- <input type="file" name="fileupload" id="fileupload" class="inputbox autowidth" /> | |
+ <input type="file" accept="{{ ALLOWED_ATTACHMENTS }}" name="fileupload" id="fileupload" class="inputbox autowidth" /> | |
<input type="submit" name="add_file" value="{L_ADD_FILE}" class="button2" onclick="upload = true;" /> | |
</dd> | |
</dl> | |
diff --git a/phpBB/styles/prosilver/template/ucp_register.html b/phpBB/styles/prosilver/template/ucp_register.html | |
index 130de9056e..adbe173b97 100644 | |
--- a/phpBB/styles/prosilver/template/ucp_register.html | |
+++ b/phpBB/styles/prosilver/template/ucp_register.html | |
@@ -57,10 +57,12 @@ | |
<hr /> | |
<!-- EVENT ucp_register_options_before --> | |
+ {% if S_LANG_OPTIONS %} | |
<dl> | |
- <dt><label for="lang">{L_LANGUAGE}{L_COLON}</label></dt> | |
- <dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{L_LANGUAGE}">{S_LANG_OPTIONS}</select></dd> | |
+ <dt><label for="lang">{{ lang('LANGUAGE') ~ lang('COLON') }}</label></dt> | |
+ <dd><select name="lang" id="lang" onchange="change_language(this.value); return false;" tabindex="6" title="{{ lang('LANGUAGE') }}">{{ S_LANG_OPTIONS }}</select></dd> | |
</dl> | |
+ {% endif %} | |
<!-- INCLUDE timezone_option.html --> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment