mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
[feature/oauth] Merge branch 'develop' of git://github.com/phpbb/phpbb3 into feature/oauth
Conflicts: phpBB/composer.json phpBB/composer.lock phpBB/develop/create_schema_files.php phpBB/includes/ucp/ucp_register.php PHPBB3-11673
This commit is contained in:
@@ -21,11 +21,11 @@
|
||||
<!-- END quote_close -->
|
||||
|
||||
<!-- BEGIN code_open -->
|
||||
<div class="codetitle"><b>{L_CODE}{L_COLON}</b></div><div class="codecontent">
|
||||
<div class="codetitle"><b>{L_CODE}{L_COLON}</b></div><pre class="codecontent">
|
||||
<!-- END code_open -->
|
||||
|
||||
<!-- BEGIN code_close -->
|
||||
</div>
|
||||
</pre>
|
||||
<!-- END code_close -->
|
||||
|
||||
<!-- BEGIN inline_attachment_open -->
|
||||
|
@@ -66,7 +66,7 @@
|
||||
<!-- IF memberrow.S_ROW_COUNT is even --><tr class="row2"><!-- ELSE --> <tr class="row1"><!-- ENDIF -->
|
||||
|
||||
<td class="gen" align="center"> {memberrow.ROW_NUMBER} </td>
|
||||
<td class="genmed" align="{S_CONTENT_FLOW_BEGIN}">{memberrow.USERNAME_FULL}<!-- IF S_SELECT_SINGLE --> [ <a href="#" onclick="insert_single('{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td>
|
||||
<td class="genmed" align="{S_CONTENT_FLOW_BEGIN}"><!-- EVENT memberlist_body_username_prepend -->{memberrow.USERNAME_FULL}<!-- EVENT memberlist_body_username_append --><!-- IF S_SELECT_SINGLE --> [ <a href="#" onclick="insert_single('{memberrow.A_USERNAME}'); return false;">{L_SELECT}</a> ]<!-- ENDIF --></td>
|
||||
<td class="genmed" align="center" nowrap="nowrap"> {memberrow.JOINED} </td>
|
||||
<td class="gen" align="center">{memberrow.POSTS}</td>
|
||||
<td class="gen" align="center"><!-- IF memberrow.RANK_IMG -->{memberrow.RANK_IMG}<!-- ELSE -->{memberrow.RANK_TITLE}<!-- ENDIF --></td>
|
||||
|
@@ -18,7 +18,7 @@
|
||||
<table cellspacing="1" cellpadding="2" border="0">
|
||||
<!-- IF S_USER_INACTIVE -->
|
||||
<tr>
|
||||
<td align="center" style="color: red;"><b class="gen">{L_USER_IS_INACTIVE}</b><br />{L_INACTIVE_REASON}{L_COLON} {USER_INACTIVE_REASON}<br /><br /></td>
|
||||
<td align="center"><b class="gen inactive">{L_USER_IS_INACTIVE}</b><br />{L_INACTIVE_REASON}{L_COLON} {USER_INACTIVE_REASON}<br /><br /></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<tr>
|
||||
@@ -66,6 +66,7 @@
|
||||
</td>
|
||||
<td class="row1">
|
||||
<table width="100%" cellspacing="1" cellpadding="2" border="0">
|
||||
<!-- EVENT memberlist_view_user_statistics_before -->
|
||||
<tr>
|
||||
<td class="gen" align="{S_CONTENT_FLOW_END}" nowrap="nowrap">{L_JOINED}{L_COLON} </td>
|
||||
<td width="100%"><b class="gen">{JOINED}</b></td>
|
||||
@@ -96,6 +97,7 @@
|
||||
<td><!-- IF ACTIVE_TOPIC != '' --><b><a class="gen" href="{U_ACTIVE_TOPIC}">{ACTIVE_TOPIC}</a></b><br /><span class="genmed">[ {ACTIVE_TOPIC_POSTS} / {ACTIVE_TOPIC_PCT} ]</span><!-- ELSE --><span class="gen">-</span><!-- ENDIF --></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
<!-- EVENT memberlist_view_user_statistics_after -->
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
@@ -154,8 +154,8 @@ function marklist(id, name, state)
|
||||
<table width="100%" cellspacing="0">
|
||||
<tr>
|
||||
<td class="genmed">
|
||||
<!-- IF S_NOTIFICATIONS_DISPLAY -->
|
||||
[ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> ] •
|
||||
<!-- IF S_NOTIFICATIONS_DISPLAY and not S_IS_BOT and S_USER_LOGGED_IN -->
|
||||
[ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button">{NOTIFICATIONS_COUNT}</a> ]
|
||||
<div id="notification_list" class="notification_list">
|
||||
<div class="row1 header">
|
||||
{L_NOTIFICATIONS}
|
||||
@@ -196,7 +196,7 @@ function marklist(id, name, state)
|
||||
<!-- ENDIF -->
|
||||
<!-- IF not S_IS_BOT --><a href="{U_LOGIN_LOGOUT}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_LOGIN_LOGOUT}</a> <!-- ENDIF -->
|
||||
<!-- IF U_RESTORE_PERMISSIONS --> <a href="{U_RESTORE_PERMISSIONS}"><img src="{T_THEME_PATH}/images/icon_mini_login.gif" width="12" height="13" alt="*" /> {L_RESTORE_PERMISSIONS}</a><!-- ENDIF -->
|
||||
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> <span style="color: red;">{L_BOARD_DISABLED}</span><!-- ENDIF -->
|
||||
<!-- IF S_BOARD_DISABLED and S_USER_LOGGED_IN --> <span class="error">{L_BOARD_DISABLED}</span><!-- ENDIF -->
|
||||
<!-- IF not S_IS_BOT -->
|
||||
<!-- IF S_USER_LOGGED_IN -->
|
||||
<!-- IF S_DISPLAY_PM --> <a href="{U_PRIVATEMSGS}"><img src="{T_THEME_PATH}/images/icon_mini_message.gif" width="12" height="13" alt="*" /> {PRIVATE_MESSAGE_INFO}<!-- IF PRIVATE_MESSAGE_INFO_UNREAD -->, {PRIVATE_MESSAGE_INFO_UNREAD}<!-- ENDIF --></a><!-- ENDIF -->
|
||||
|
@@ -2,8 +2,8 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
var form_name = 'postform';
|
||||
var text_name = 'message';
|
||||
var form_name = opener.form_name;
|
||||
var text_name = opener.text_name;
|
||||
// ]]>
|
||||
</script>
|
||||
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/editor.js"></script>
|
||||
|
@@ -34,6 +34,7 @@
|
||||
<!-- ENDIF -->
|
||||
</td>
|
||||
<td class="row1">
|
||||
<!-- EVENT topiclist_row_prepend -->
|
||||
<!-- IF searchresults.S_UNREAD_TOPIC --><a href="{searchresults.U_NEWEST_POST}" class="imageset">{NEWEST_POST_IMG}</a><!-- ENDIF -->
|
||||
{searchresults.ATTACH_ICON_IMG} <a href="{searchresults.U_VIEW_TOPIC}" class="topictitle">{searchresults.TOPIC_TITLE}</a>
|
||||
<!-- IF searchresults.S_TOPIC_UNAPPROVED or searchresults.S_POSTS_UNAPPROVED -->
|
||||
@@ -58,6 +59,7 @@
|
||||
] </p>
|
||||
<!-- ENDIF -->
|
||||
<p class="gensmall">{L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a></p>
|
||||
<!-- EVENT topiclist_row_append -->
|
||||
</td>
|
||||
<td class="row2" width="100" align="center"><p class="topicauthor">{searchresults.TOPIC_AUTHOR_FULL}</p></td>
|
||||
<td class="row1" width="50" align="center"><p class="topicdetails">{searchresults.TOPIC_REPLIES}</p></td>
|
||||
|
@@ -7,8 +7,9 @@
|
||||
|
||||
<script type="text/javascript" src="{T_JQUERY_LINK}"></script>
|
||||
<!-- IF S_JQUERY_FALLBACK --><script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript src="{T_ASSETS_PATH}/javascript/jquery.js?assets_version={T_ASSETS_VERSION}" type="text/javascript"%3E%3C/script%3E'));</script><!-- ENDIF -->
|
||||
{SCRIPTS}
|
||||
|
||||
<!-- EVENT simple_footer_after -->
|
||||
|
||||
{$SCRIPTS}
|
||||
</body>
|
||||
</html>
|
||||
|
@@ -123,7 +123,7 @@
|
||||
<tr>
|
||||
<td class="row1" align="center">
|
||||
|
||||
<b class="genmed" style="color:green">{L_FRIENDS_ONLINE}</b>
|
||||
<b class="genmed online">{L_FRIENDS_ONLINE}</b>
|
||||
|
||||
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
||||
<!-- BEGIN friends_online -->
|
||||
@@ -139,7 +139,7 @@
|
||||
|
||||
<hr />
|
||||
|
||||
<b class="genmed" style="color:red">{L_FRIENDS_OFFLINE}</b>
|
||||
<b class="genmed offline">{L_FRIENDS_OFFLINE}</b>
|
||||
|
||||
<ul class="nav" style="margin: 0; padding: 0; list-style-type: none; line-height: 175%;">
|
||||
<!-- BEGIN friends_offline -->
|
||||
|
@@ -25,7 +25,7 @@
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td width="100%"<!-- IF history_row.S_CURRENT_MSG --> style="background-color:lightblue"<!-- ENDIF -->>
|
||||
<td width="100%"<!-- IF history_row.S_CURRENT_MSG --> class="current"<!-- ENDIF -->>
|
||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"><b>{L_PM_SUBJECT}{L_COLON}</b> {history_row.SUBJECT}</div><div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><b>{L_FOLDER}{L_COLON}</b> {history_row.FOLDER}</div>
|
||||
</td>
|
||||
</tr>
|
||||
|
@@ -1,13 +1,22 @@
|
||||
<!-- INCLUDE ucp_header.html -->
|
||||
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
var form_name = 'ucp';
|
||||
var text_name = 'signature';
|
||||
// ]]>
|
||||
</script>
|
||||
|
||||
<!-- DEFINE $S_SIGNATURE = 1 -->
|
||||
<table class="tablebg" width="100%" cellspacing="1">
|
||||
<tr>
|
||||
<th colspan="2">{L_TITLE}</th>
|
||||
</tr>
|
||||
<!-- IF not S_SMILIES_ALLOWED -->
|
||||
<tr>
|
||||
<td colspan="2" class="row1">{L_SIGNATURE_EXPLAIN}</td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
|
||||
<!-- IF ERROR -->
|
||||
<tr>
|
||||
@@ -16,14 +25,32 @@
|
||||
<!-- ENDIF -->
|
||||
|
||||
<tr>
|
||||
<td colspan="2" class="row2">
|
||||
<script type="text/javascript">
|
||||
// <![CDATA[
|
||||
var form_name = 'ucp';
|
||||
var text_name = 'signature';
|
||||
// ]]>
|
||||
</script>
|
||||
|
||||
<!-- IF S_SMILIES_ALLOWED -->
|
||||
<td class="row1" width="22%" valign="top">
|
||||
{L_SIGNATURE_EXPLAIN}
|
||||
<table width="100%" cellspacing="5" cellpadding="0" border="0" align="center">
|
||||
<tr>
|
||||
<td class="gensmall" align="center"><b>{L_SMILIES}</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<!-- BEGIN smiley -->
|
||||
<a href="#" onclick="insert_text('{smiley.A_SMILEY_CODE}', true); return false;" style="line-height: 20px;"><img src="{smiley.SMILEY_IMG}" width="{smiley.SMILEY_WIDTH}" height="{smiley.SMILEY_HEIGHT}" alt="{smiley.SMILEY_CODE}" title="{smiley.SMILEY_DESC}" hspace="2" vspace="2" /></a>
|
||||
<!-- END smiley -->
|
||||
</td>
|
||||
</tr>
|
||||
<!-- IF S_SHOW_SMILEY_LINK -->
|
||||
<tr>
|
||||
<td align="center"><a class="nav" href="{U_MORE_SMILIES}" onclick="popup(this.href, 300, 350, '_phpbbsmilies'); return false;">{L_MORE_SMILIES}</a></td>
|
||||
</tr>
|
||||
<!-- ENDIF -->
|
||||
</table>
|
||||
</td>
|
||||
<td class="row2">
|
||||
<!-- ELSE -->
|
||||
<td class="row2" colspan="2">
|
||||
<!-- ENDIF -->
|
||||
|
||||
<table cellspacing="0" cellpadding="2" border="0" width="99%">
|
||||
<!-- INCLUDE posting_buttons.html -->
|
||||
<tr>
|
||||
|
@@ -40,6 +40,7 @@
|
||||
<td class="row1" width="25" align="center"><!-- IF topicrow.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}" width="{topicrow.TOPIC_ICON_IMG_WIDTH}" height="{topicrow.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td>
|
||||
<!-- ENDIF -->
|
||||
<td class="row1">
|
||||
<!-- EVENT topiclist_row_prepend -->
|
||||
<!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}" class="imageset">{NEWEST_POST_IMG}</a><!-- ENDIF -->
|
||||
{topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}{L_COLON} {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}"class="topictitle">{topicrow.TOPIC_TITLE}</a>
|
||||
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
|
||||
@@ -63,6 +64,7 @@
|
||||
<!-- END pagination -->
|
||||
] </p>
|
||||
<!-- ENDIF -->
|
||||
<!-- EVENT topiclist_row_append -->
|
||||
</td>
|
||||
<td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
||||
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
||||
@@ -203,6 +205,7 @@
|
||||
<td class="row1" width="25" align="center"><!-- IF topicrow.TOPIC_ICON_IMG --><img src="{T_ICONS_PATH}{topicrow.TOPIC_ICON_IMG}" width="{topicrow.TOPIC_ICON_IMG_WIDTH}" height="{topicrow.TOPIC_ICON_IMG_HEIGHT}" alt="" title="" /><!-- ENDIF --></td>
|
||||
<!-- ENDIF -->
|
||||
<td class="row1">
|
||||
<!-- EVENT topiclist_row_prepend -->
|
||||
<!-- IF topicrow.S_UNREAD_TOPIC --><a href="{topicrow.U_NEWEST_POST}" class="imageset">{NEWEST_POST_IMG}</a><!-- ENDIF -->
|
||||
{topicrow.ATTACH_ICON_IMG} <!-- IF topicrow.S_HAS_POLL or topicrow.S_TOPIC_MOVED --><b>{topicrow.TOPIC_TYPE}</b> <!-- ENDIF --><a title="{L_POSTED}{L_COLON} {topicrow.FIRST_POST_TIME}" href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a>
|
||||
<!-- IF topicrow.S_TOPIC_UNAPPROVED or topicrow.S_POSTS_UNAPPROVED -->
|
||||
@@ -227,6 +230,7 @@
|
||||
] </p>
|
||||
<!-- ENDIF -->
|
||||
<!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><p class="gensmall">{L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a></p><!-- ENDIF -->
|
||||
<!-- EVENT topiclist_row_append -->
|
||||
</td>
|
||||
<td class="row2" width="130" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR_FULL}</p></td>
|
||||
<td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
|
||||
|
@@ -208,9 +208,11 @@
|
||||
<br /><b>{postrow.PROFILE_FIELD1_NAME}{L_COLON}</b> {postrow.PROFILE_FIELD1_VALUE}
|
||||
<!-- ENDIF -->
|
||||
|
||||
<!-- EVENT viewtopic_body_postrow_custom_fields_before -->
|
||||
<!-- BEGIN custom_fields -->
|
||||
<br /><b>{postrow.custom_fields.PROFILE_FIELD_NAME}{L_COLON}</b> {postrow.custom_fields.PROFILE_FIELD_VALUE}
|
||||
<!-- END custom_fields -->
|
||||
<!-- EVENT viewtopic_body_postrow_custom_fields_after -->
|
||||
</span>
|
||||
|
||||
</td>
|
||||
@@ -315,7 +317,21 @@
|
||||
<!-- IF postrow.S_ROW_COUNT is even --><tr class="row1"><!-- ELSE --><tr class="row2"><!-- ENDIF -->
|
||||
|
||||
<td class="profile"><strong><a href="#wrapheader">{L_BACK_TO_TOP}</a></strong></td>
|
||||
<td><div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};"> <!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="imageset">{PROFILE_IMG}</a> <!-- ENDIF --> <!-- IF postrow.U_PM --><a href="{postrow.U_PM}" class="imageset">{PM_IMG}</a> <!-- ENDIF --> <!-- IF postrow.U_EMAIL --><a href="{postrow.U_EMAIL}" class="imageset">{EMAIL_IMG}</a> <!-- ENDIF --> </div> <div class="gensmall" style="float: {S_CONTENT_FLOW_END};"><!-- IF not S_IS_BOT --><!-- IF postrow.U_EDIT --><a href="{postrow.U_EDIT}" class="imageset">{EDIT_IMG}</a> <!-- ENDIF --> <!-- IF postrow.U_QUOTE --><a href="{postrow.U_QUOTE}" class="imageset">{QUOTE_IMG}</a> <!-- ENDIF --> <!-- ENDIF --> </div></td>
|
||||
<td>
|
||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_BEGIN};">
|
||||
<!-- IF postrow.U_POST_AUTHOR --><a href="{postrow.U_POST_AUTHOR}" class="imageset">{PROFILE_IMG}</a><!-- ENDIF -->
|
||||
<!-- IF postrow.U_PM --><a href="{postrow.U_PM}" class="imageset">{PM_IMG}</a><!-- ENDIF -->
|
||||
<!-- IF postrow.U_EMAIL --><a href="{postrow.U_EMAIL}" class="imageset">{EMAIL_IMG}</a><!-- ENDIF -->
|
||||
</div>
|
||||
<div class="gensmall" style="float: {S_CONTENT_FLOW_END};">
|
||||
<!-- EVENT viewtopic_body_post_buttons_before -->
|
||||
<!-- IF not S_IS_BOT -->
|
||||
<!-- IF postrow.U_EDIT --><a href="{postrow.U_EDIT}" class="imageset">{EDIT_IMG}</a><!-- ENDIF -->
|
||||
<!-- IF postrow.U_QUOTE --><a href="{postrow.U_QUOTE}" class="imageset">{QUOTE_IMG}</a><!-- ENDIF -->
|
||||
<!-- ENDIF -->
|
||||
<!-- EVENT viewtopic_body_post_buttons_after -->
|
||||
</div>
|
||||
</td>
|
||||
<!-- ENDIF -->
|
||||
</tr>
|
||||
|
||||
|
@@ -292,7 +292,11 @@ p.topicdetails {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.error {
|
||||
.online {
|
||||
color: green;
|
||||
}
|
||||
|
||||
.offline, .error, .inactive {
|
||||
color: red;
|
||||
}
|
||||
|
||||
@@ -360,6 +364,10 @@ td.profile {
|
||||
background-color: #D1D7DC;
|
||||
}
|
||||
|
||||
.current {
|
||||
background-color: lightblue;
|
||||
}
|
||||
|
||||
hr {
|
||||
height: 1px;
|
||||
border-width: 0;
|
||||
|
Reference in New Issue
Block a user