Skip to content

Commit 339b538

Browse files
author
Jarosław Pustuła
committedApr 27, 2016
Merge pull request #7 from inventea/develop
Add changes from phpBB 3.1.9 prosilver
2 parents 6309e89 + 864ee26 commit 339b538

File tree

5 files changed

+16
-2
lines changed

5 files changed

+16
-2
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2.1.1
2+
-----
3+
4+
- Update for phpBB 3.1.9
5+
6+
17
2.1.0
28
-----
39

‎we_clearblue/style.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
# General Information about this style
2222
name = we_clearblue
2323
copyright = © INVENTEA
24-
style_version = 2.1.0
25-
phpbb_version = 3.1.8
24+
style_version = 2.1.1
25+
phpbb_version = 3.1.9
2626

2727
# Defining a different template bitfield
2828
# template_bitfield = lNg=

‎we_clearblue/template/memberlist_view.html

+6
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,14 @@ <h2 class="memberlist-title">{PAGE_TITLE}</h2>
4848
<!-- IF S_USER_INACTIVE --><dt>{L_USER_IS_INACTIVE}{L_COLON}</dt> <dd>{USER_INACTIVE_REASON}</dd><!-- ENDIF -->
4949
<!-- IF AGE !== '' --><dt>{L_AGE}{L_COLON}</dt> <dd>{AGE}</dd><!-- ENDIF -->
5050
<!-- IF S_GROUP_OPTIONS --><dt>{L_USERGROUPS}{L_COLON}</dt> <dd><select name="g">{S_GROUP_OPTIONS}</select> <input type="submit" name="submit" value="{L_GO}" class="button2" /></dd><!-- ENDIF -->
51+
<!-- EVENT memberlist_view_non_contact_custom_fields_before -->
5152
<!-- BEGIN custom_fields -->
5253
<!-- IF not custom_fields.S_PROFILE_CONTACT -->
5354
<dt>{custom_fields.PROFILE_FIELD_NAME}{L_COLON}</dt> <dd>{custom_fields.PROFILE_FIELD_VALUE}</dd>
5455
<!-- ENDIF -->
5556
<!-- END custom_fields -->
57+
<!-- EVENT memberlist_view_non_contact_custom_fields_after -->
58+
<!-- EVENT memberlist_view_zebra_before -->
5659
<!-- IF S_USER_LOGGED_IN and S_ZEBRA -->
5760
<!-- IF U_REMOVE_FRIEND -->
5861
<dt>&nbsp;</dt> <dd class="zebra"><a href="{U_REMOVE_FRIEND}" data-ajax="zebra"><strong>{L_REMOVE_FRIEND}</strong></a></dd>
@@ -67,6 +70,7 @@ <h2 class="memberlist-title">{PAGE_TITLE}</h2>
6770
<!-- ENDIF -->
6871
<!-- ENDIF -->
6972
<!-- ENDIF -->
73+
<!-- EVENT memberlist_view_zebra_after -->
7074
</dl>
7175

7276
</div>
@@ -83,6 +87,7 @@ <h3>{L_CONTACT_USER}</h3>
8387
<!-- IF U_EMAIL --><dt>{L_EMAIL_ADDRESS}{L_COLON}</dt> <dd><a href="{U_EMAIL}">{L_SEND_EMAIL_USER}</a></dd><!-- ENDIF -->
8488
<!-- IF U_PM --><dt>{L_PM}{L_COLON}</dt> <dd><a href="{U_PM}">{L_SEND_PRIVATE_MESSAGE}</a></dd><!-- ENDIF -->
8589
<!-- IF U_JABBER and S_JABBER_ENABLED --><dt>{L_JABBER}{L_COLON}</dt> <dd><a href="{U_JABBER}" onclick="popup(this.href, 750, 320); return false;">{L_SEND_JABBER_MESSAGE}</a></dd><!-- ELSEIF USER_JABBER --><dt>{L_JABBER}{L_COLON}</dt> <dd>{USER_JABBER}</dd><!-- ENDIF -->
90+
<!-- EVENT memberlist_view_contact_custom_fields_before -->
8691
<!-- BEGIN custom_fields -->
8792
<!-- IF custom_fields.S_PROFILE_CONTACT -->
8893
<dt>{custom_fields.PROFILE_FIELD_NAME}{L_COLON}</dt>
@@ -93,6 +98,7 @@ <h3>{L_CONTACT_USER}</h3>
9398
<!-- ENDIF -->
9499
<!-- ENDIF -->
95100
<!-- END custom_fields -->
101+
<!-- EVENT memberlist_view_contact_custom_fields_after -->
96102
<!-- IF S_PROFILE_FIELD1 -->
97103
<!-- NOTE: Use a construct like this to include admin defined profile fields. Replace FIELD1 with the name of your field. -->
98104
<dt>{PROFILE_FIELD1_NAME}{L_COLON}</dt> <dd>{PROFILE_FIELD1_VALUE}</dd>

‎we_clearblue/template/overall_header.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
33
<head>
44
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
56
<meta name="viewport" content="width=device-width, initial-scale=1" />
67
{META}
78
<title><!-- IF UNREAD_NOTIFICATIONS_COUNT -->({UNREAD_NOTIFICATIONS_COUNT}) <!-- ENDIF --><!-- IF not S_VIEWTOPIC and not S_VIEWFORUM -->{SITENAME} - <!-- ENDIF --><!-- IF S_IN_MCP -->{L_MCP} - <!-- ELSEIF S_IN_UCP -->{L_UCP} - <!-- ENDIF -->{PAGE_TITLE}<!-- IF S_VIEWTOPIC or S_VIEWFORUM --> - {SITENAME}<!-- ENDIF --></title>

‎we_clearblue/template/simple_header.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
33
<head>
44
<meta charset="utf-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
56
<meta name="viewport" content="width=device-width, initial-scale=1" />
67
{META}
78
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

0 commit comments

Comments
 (0)
Please sign in to comment.