Mise à jour des styles de phpBB 3.1.10 à 3.1.11 Facile

Mise à jour des styles de phpBB 3.1.10 à 3.1.11

Détail des modifications des styles de phpBB 3.110 à 3.1.11


Retour à la documentation : mettre à jour son forum phpBB 3.1.x

1 » Détail des modifications prosilver
2 » Détail des modifications subsilver2

1 » Détail des modifications prosilver

Liste des fichiers à modifier :
  • template/ajax.js
  • template/bbcode.html
  • template/forum_fn.js
  • template/forumlist_body.html
  • template/index_body.html
  • template/jumpbox.html
  • template/mcp_forum.html
  • template/mcp_post.html
  • template/mcp_topic.html
  • template/memberlist_team.html
  • template/navbar_header.html
  • template/overall_header.html
  • template/posting_attach_body.html
  • template/posting_topic_review.html
  • template/search_results.html
  • template/ucp_main_front.html
  • template/ucp_main_subscribed.html
  • template/ucp_pm_viewmessage.html
  • template/ucp_register.html
  • template/viewforum_body.html
  • template/viewtopic_body.html
  • theme/colours.css
  • theme/common.css
  • theme/content.css
  • theme/forms.css
  • style.cfg

template/ajax.js

  1. Trouver (vers ligne 135) :
    Code: Tout sélectionner
    	// Remove the Mark all read link if there are no unread notifications.

    Remplacer par :
    Code: Tout sélectionner
    	// Remove the Mark all read link and hide notification count if there are no unread notifications.

  2. Trouver (vers ligne 137) :
    Code: Tout sélectionner
    	if (!unreadCount) {
    		$('#mark_all_notifications').remove();

    Ajouter après :
    Code: Tout sélectionner
    		$('#notification_list_button > strong').addClass('hidden');

template/bbcode.html

  1. Trouver (vers ligne 18) :
    Code: Tout sélectionner
    <!-- BEGIN b_open --><strong><!-- END b_open -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- BEGIN b_open --><strong class="text-strong"><!-- END b_open -->

  2. Trouver (vers ligne 27) :
    Code: Tout sélectionner
    <!-- BEGIN i_open --><em><!-- END i_open -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- BEGIN i_open --><em class="text-italics"><!-- END i_open -->

template/forum_fn.js

  1. Trouver (vers ligne 60) :
    Code: Tout sélectionner
    	if ($this.attr('name').substr(0, name.length) === name) {

    Remplacer par :
    Code: Tout sélectionner
    	if ($this.attr('name').substr(0, name.length) === name && !$this.prop('disabled')) {

template/forumlist_body.html

  1. Trouver (vers ligne 50) :
    Code: Tout sélectionner
    								<a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.S_UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    								<!-- EVENT forumlist_body_subforum_link_prepend --><a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.S_UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF --><!-- EVENT forumlist_body_subforum_link_append -->

template/index_body.html

  1. Trouver (vers ligne 43) :
    Code: Tout sélectionner
    			{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> <br />{LOGGED_IN_USER_LIST}
    			<!-- IF LEGEND --><br /><em>{L_LEGEND}{L_COLON} {LEGEND}</em><!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    			{TOTAL_USERS_ONLINE} ({L_ONLINE_EXPLAIN})<br />{RECORD_USERS}<br /> 
    			<!-- IF U_VIEWONLINE -->
    				<br />{LOGGED_IN_USER_LIST}
    			<!-- IF LEGEND --><br /><em>{L_LEGEND}{L_COLON} {LEGEND}</em><!-- ENDIF -->
    			<!-- ENDIF -->

  2. Trouver (vers ligne 50) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_BIRTHDAY_LIST -->
    	<div class="stat-block birthday-list">
    

    Ajouter avant :
    Code: Tout sélectionner
    	<!-- EVENT index_body_birthday_block_before -->

template/template/jumpbox.html

  1. Trouver (vers ligne 2) :
    Code: Tout sélectionner
    <!-- IF S_VIEWTOPIC -->
    	<p class="jumpbox-return"><a href="{U_VIEW_FORUM}" class="left-box arrow-{S_CONTENT_FLOW_BEGIN}" accesskey="r">{L_RETURN_TO_FORUM}</a></p>
    <!-- ELSEIF S_VIEWFORUM -->

    Ajouter avant :
    Code: Tout sélectionner
    <div class="action-bar actions-jump">

  2. Trouver (vers ligne 30) :
    Code: Tout sélectionner
    <!-- ELSE -->
    	<br /><br />
    <!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- ELSE -->
    	</br></br>
    <!-- ENDIF -->
    </div>

template/mcp_forum.html

  1. Trouver (vers ligne 123) :
    Code: Tout sélectionner
    <fieldset class="display-actions">
    	<!-- IF not S_MERGE_SELECT -->
    	<select name="action">

    Ajouter avant :
    Code: Tout sélectionner
    <!-- EVENT mcp_forum_actions_before -->
    

  2. Trouver (vers ligne 137) :
    Code: Tout sélectionner
    			<option value="make_announce">{L_MAKE_ANNOUNCE}</option>
    			<option value="make_global">{L_MAKE_GLOBAL}</option>
    		<!-- ENDIF -->

    Ajouter après :
    Code: Tout sélectionner
    	
    		<!-- EVENT mcp_forum_actions_append -->
    

template/mcp_post.html

  1. Trouver (vers ligne 294) :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<table class="table1">

    Remplacer par :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<div class="pagination">
    				<!-- INCLUDE pagination.html -->
    			</div>
    			</div>
    		</div>
    
    		<div class="panel">
    			<div class="inner">
    
    			<table class="table1">

  2. Trouver (vers ligne 315) :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p>

    Remplacer par :
    Code: Tout sélectionner
    			</tbody>
    			</table>
    
    			<div class="buttons">
    				<p><a href="{U_LOOKUP_ALL}#ip">{L_LOOKUP_ALL}</a></p>
    			</div>
    
    			<div class="pagination">
    				<ul>
    				<!-- BEGIN pagination_ips -->
    					<!-- IF pagination_ips.S_IS_PREV -->
    						<li class="previous"><a href="{pagination_ips.PAGE_URL}" rel="prev" role="button">{L_PREVIOUS}</a></li>
    					<!-- ELSEIF pagination_ips.S_IS_CURRENT -->
    						<li class="active"><span>{pagination_ips.PAGE_NUMBER}</span></li>
    					<!-- ELSEIF pagination_ips.S_IS_ELLIPSIS -->
    						<li class="ellipsis" role="separator"><span>{L_ELLIPSIS}</span></li>
    					<!-- ELSEIF pagination_ips.S_IS_NEXT -->
    						<li class="next"><a href="{pagination_ips.PAGE_URL}" rel="next" role="button">{L_NEXT}</a></li>
    					<!-- ELSE -->
    						<li><a href="{pagination_ips.PAGE_URL}" role="button">{pagination_ips.PAGE_NUMBER}</a></li>
    					<!-- ENDIF -->
    				<!-- END pagination_ips -->
    				</ul>
    			</div>

template/mcp_topic.html

  1. Trouver (vers ligne 114) :
    Code: Tout sélectionner
    				<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3>

    Remplacer par :
    Code: Tout sélectionner
    				<!-- EVENT mcp_topic_postrow_post_subject_before -->
    
    				<h3><a href="{postrow.U_POST_DETAILS}">{postrow.POST_SUBJECT}</a></h3> 	
    
    				<!-- EVENT mcp_topic_postrow_post_subject_after -->

template/memberlist_team.html

  1. Trouver (vers ligne 22) :
    Code: Tout sélectionner
    		<td><!-- IF group.user.RANK_IMG --><span class="rank-img">{group.user.RANK_IMG}</span><!-- ELSE --><span class="rank-img">{group.user.RANK_TITLE}</span><!-- ENDIF -->{group.user.USERNAME_FULL}<!-- IF group.user.S_INACTIVE --> ({L_INACTIVE})<!-- ENDIF --></td>

    Remplacer par :
    Code: Tout sélectionner
    		<td><!-- IF group.user.RANK_IMG --><span class="rank-img">{group.user.RANK_IMG}</span><!-- ELSE --><span class="rank-img">{group.user.RANK_TITLE}</span><!-- ENDIF --><!-- EVENT memberlist_team_username_prepend -->{group.user.USERNAME_FULL}<!-- IF group.user.S_INACTIVE --> ({L_INACTIVE})<!-- ENDIF --><!-- EVENT memberlist_team_username_append --></td>

template/navbar_header.html

  1. Trouver (vers ligne 75) :
    Code: Tout sélectionner
    				<a href="{U_PRIVATEMSGS}" role="menuitem"><span>{L_PRIVATE_MESSAGES} [</span><strong>{PRIVATE_MESSAGE_COUNT}</strong><span>]</span></a>

    Remplacer par :
    Code: Tout sélectionner
    				<a href="{U_PRIVATEMSGS}" role="menuitem"><span>{L_PRIVATE_MESSAGES} </span><strong class="badge<!-- IF not PRIVATE_MESSAGE_COUNT --> hidden<!-- ENDIF -->">{PRIVATE_MESSAGE_COUNT}</strong></a>

  2. Trouver (vers ligne 80) :
    Code: Tout sélectionner
    				<a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" class="dropdown-trigger"><span>{L_NOTIFICATIONS} [</span><strong>{NOTIFICATIONS_COUNT}</strong><span>]</span></a>

    Remplacer par :
    Code: Tout sélectionner
    				<a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" class="dropdown-trigger"><span>{L_NOTIFICATIONS} </span><strong class="badge<!-- IF not NOTIFICATIONS_COUNT --> hidden<!-- ENDIF -->">{NOTIFICATIONS_COUNT}</strong></a>

template/overall_header.html

  1. Trouver (vers ligne 103) :
    Code: Tout sélectionner
    			</div>
    			<!-- EVENT overall_header_headerbar_after -->

    Ajouter avant :
    Code: Tout sélectionner
    			<!-- EVENT overall_header_searchbox_after -->
    

template/posting_attach_body.html

  1. Trouver (vers ligne 10) :
    Code: Tout sélectionner
    			<input type="file" name="fileupload" id="fileupload" maxlength="{FILESIZE}" value="" class="inputbox autowidth" />

    Remplacer par :
    Code: Tout sélectionner
    			<input type="file" name="fileupload" id="fileupload" class="inputbox autowidth" />

template/posting_topic_review.html

  1. Trouver (vers ligne 16) :
    Code: Tout sélectionner
    	<div class="post bg3 post-ignore">
    		<div class="inner">
    			{topic_review_row.L_IGNORE_POST}

    Remplacer par :
    Code: Tout sélectionner
    	<div class="post bg3 post-ignore">
    		<div class="inner">
    			{topic_review_row.L_IGNORE_POST}
    
    	<!-- ELSE IF topic_review_row.S_POST_DELETED -->
    	<div class="post bg3 post-ignore">
    		<div class="inner">
    			{topic_review_row.L_DELETE_POST}
    

template/search_results.html

  1. Trouver (vers ligne 78) :
    Code: Tout sélectionner
    							<!-- IF searchresults.S_TOPIC_REPORTED --><a href="{searchresults.U_MCP_REPORT}">{REPORTED_IMG}</a><!-- ENDIF --><br />

    Ajouter après :
    Code: Tout sélectionner
    							<!-- EVENT topiclist_row_topic_title_after -->

  2. Trouver (vers ligne 93) :
    Code: Tout sélectionner
    							<!-- IF searchresults.S_HAS_POLL -->{POLL_IMG} <!-- ENDIF -->
    							<!-- EVENT topiclist_row_topic_title_after -->

    Remplacer par :
    Code: Tout sélectionner
    							<!-- IF searchresults.S_HAS_POLL -->{POLL_IMG} <!-- ENDIF -->

  3. Trouver (vers ligne 139) :
    Code: Tout sélectionner
    			<dd>{L_TOPIC}{L_COLON} <a href="{searchresults.U_VIEW_TOPIC}">{searchresults.TOPIC_TITLE}</a></dd>

    Ajouter après :
    Code: Tout sélectionner
    			<!-- EVENT search_results_topic_title_after -->

template/ucp_main_front.html

  1. Trouver (vers ligne 58) :
    Code: Tout sélectionner
    		<dt>{L_JOINED}{L_COLON}</dt> <dd>{JOINED}</dd>

    Ajouter avant :
    Code: Tout sélectionner
    		<!-- EVENT ucp_main_front_user_activity_prepend -->

  2. Trouver (vers ligne 63) :
    Code: Tout sélectionner
    		<!-- IF WARNINGS --><dt>{L_YOUR_WARNINGS}{L_COLON}</dt> <dd class="error">{WARNING_IMG} [{WARNINGS}]</dd><!-- ENDIF -->

    Ajouter après :
    Code: Tout sélectionner
    		<!-- EVENT ucp_main_front_user_activity_append -->

template/ucp_main_subscribed.html

  1. Trouver (vers ligne 33) :
    Code: Tout sélectionner
    {L_LAST_POST} {L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL} &laquo; <a href="{topicrow.U_LAST_POST}">{forumrow.LAST_POST_TIME}</a>

    Remplacer par :
    Code: Tout sélectionner
    {L_LAST_POST} {L_POST_BY_AUTHOR} {forumrow.LAST_POST_AUTHOR_FULL} &laquo; <a href="{forumrow.U_LAST_POST}">{forumrow.LAST_POST_TIME}</a>

template/ucp_pm_viewmessage.html

  1. Trouver (vers ligne 149) :
    Code: Tout sélectionner
    <!-- IF S_VIEW_MESSAGE -->
    <fieldset class="display-options">

    Ajouter avant :
    Code: Tout sélectionner
    <!-- EVENT ucp_pm_viewmessage_options_before -->

template/ucp_register.html

  1. Trouver (vers ligne 81) :
    Code: Tout sélectionner
    <!-- IF S_COPPA -->
    
    
    <div class="panel">
    	<div class="inner">

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF S_COPPA -->
    
    <div class="panel">
    	<div class="inner">

template/viewforum_body.html

  1. Trouver (vers ligne 264) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST -->
    	<div class="stat-block online-list">
    		<h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE -->
    	<div class="stat-block online-list">
    		<h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3>

template/viewtopic_body.html

  1. Trouver (vers ligne 411) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST -->
    	<div class="stat-block online-list">
    		<h3><!-- IF U_VIEWONLINE --><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a><!-- ELSE -->{L_WHO_IS_ONLINE}<!-- ENDIF --></h3>

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_ONLINE_LIST and U_VIEWONLINE -->
    	<div class="stat-block online-list">
    		<h3><a href="{U_VIEWONLINE}">{L_WHO_IS_ONLINE}</a></h3>

theme/colours.css

  1. Trouver (vers ligne 1161) :
    Code: Tout sélectionner
    li.notification-reported strong, li.notification-disapproved strong {
    	color: #D31141;
    }

    Ajouter après :
    Code: Tout sélectionner
    .badge {
    	background-color: #D31141;
    	color: #ffffff;
    }

theme/common.css

  1. Trouver (vers ligne 139) :
    Code: Tout sélectionner
    p.jumpbox-return {
    	margin-top: 1em;
    }

    Remplacer par :
    Code: Tout sélectionner
    p.jumpbox-return {
    	margin-top: 10px;
    	margin-bottom: 0;
    	float: left;
    }

  2. Trouver (vers ligne 143) :
    Code: Tout sélectionner
    b, strong {
    	font-weight: bold;
    }

    Ajouter après :
    Code: Tout sélectionner
    .text-strong {
    	font-weight: bold;
    }

  3. Trouver (vers ligne 147) :
    Code: Tout sélectionner
    i, em {
    	font-style: italic;
    }

    Ajouter après :
    Code: Tout sélectionner
    .text-italics {
    	font-style: italic;
    }

  4. Trouver (vers ligne 1250) :
    Code: Tout sélectionner
    .notification_text {
    	margin-left: 58px;
    }

    Ajouter après :
    Code: Tout sélectionner
    .badge {
    	border-radius: 10px;
    	opacity: 0.8;
    	text-align: center;
    	white-space: nowrap;
    	font-size: 10px;
    	line-height: 1;
    	float: right;
    	display: inline-block;
    	margin-left: 3px;
    	vertical-align: baseline;
    	position: relative;
    	top: 3px;
    	padding: 4px 6px;
    }
    
    .badge.hidden {
    	display: none;
    
    }

  5. Trouver et supprimer (vers ligne 1280) :
    Code: Tout sélectionner
    .compact .icon-notification > a > strong, .compact .icon-pm > a > strong {
    	padding-left: 2px;
    }

theme/content.css

  1. Trouver (vers ligne 492) :
    Code: Tout sélectionner
    .codebox {
    	padding: 3px;
    	border: 1px solid transparent;
    	font-size: 1em;
    }

    Remplacer par :
    Code: Tout sélectionner
    .codebox {
    	padding: 3px;
    	border: 1px solid transparent;
    	font-size: 1em;
    	overflow-x: scroll;
    	word-wrap: normal;
    }

  2. Trouver (vers ligne 511) :
    Code: Tout sélectionner
    .codebox code {
    	overflow: auto;
    	display: block;
    	height: auto;
    	max-height: 200px;
    	white-space: normal;
    	padding-top: 5px;
    	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
    	line-height: 1.3em;
    	margin: 2px 0;
    }

    Remplacer par :
    Code: Tout sélectionner
    .codebox code {
    	overflow: auto;
    	display: block;
    	height: auto;
    	max-height: 200px;
    	white-space: normal;
    	padding-top: 5px;
    	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, monospace;
    	line-height: 1.3em;
    	margin: 2px 0;
    }

theme/forms.css

  1. Trouver (vers ligne 290) :
    Code: Tout sélectionner
    input[type="number"] {
    	-moz-padding-end: inherit;
    }

    Remplacer par :
    Code: Tout sélectionner
    input[type="number"] {
    	-moz-padding-end: 0;
    }

style.cfg

  1. Trouver (vers ligne 24) :
    Code: Tout sélectionner
    style_version = 3.1.10
    phpbb_version = 3.1.10

    Remplacer par :
    Code: Tout sélectionner
    style_version = 3.1.11
    phpbb_version = 3.1.11

Retour à la documentation : mettre à jour son forum phpBB 3.1.x


2 » Détail des modifications subsilver2

Liste des fichiers à modifier :
  • template/forumlist_body.html
  • template/index_body.html
  • template/mcp_forum.html
  • template/memberlist_search.html
  • template/memberlist_team.html
  • template/overall_header.html
  • template/ucp_main_front.html
  • template/ucp_register.html
  • style.cfg

template/mcp_forum.html

  1. Trouver (vers ligne 59) :
    Code: Tout sélectionner
    <a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.S_UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- EVENT forumlist_body_subforum_link_prepend --><a href="{forumrow.subforum.U_SUBFORUM}" class="subforum<!-- IF forumrow.subforum.S_UNREAD --> unread<!-- ELSE --> read<!-- ENDIF -->" title="<!-- IF forumrow.subforum.S_UNREAD -->{L_UNREAD_POSTS}<!-- ELSE -->{L_NO_UNREAD_POSTS}<!-- ENDIF -->">{forumrow.subforum.SUBFORUM_NAME}</a><!-- IF not forumrow.subforum.S_LAST_ROW -->{L_COMMA_SEPARATOR}<!-- ENDIF --><!-- EVENT forumlist_body_subforum_link_append -->

template/index_body.html

  1. Trouver (vers ligne 69) :
    Code: Tout sélectionner
    <!-- IF S_DISPLAY_BIRTHDAY_LIST -->
    	<br clear="all" />

    Ajouter avant :
    Code: Tout sélectionner
    <!-- EVENT index_body_birthday_block_before -->


template/mcp_forum.html

  1. Trouver (vers ligne 61) :
    Code: Tout sélectionner
    <!-- IF not S_MERGE_SELECT -->
    <tr>
    	<td class="cat" colspan="6" align="{S_CONTENT_FLOW_END}">

    Ajouter avant :
    Code: Tout sélectionner
    <!-- EVENT mcp_forum_actions_before -->

  2. Trouver (vers ligne 77) :
    Code: Tout sélectionner
    				<option value="make_global">{L_MAKE_GLOBAL}</option>
    			<!-- ENDIF -->
    		</select>

    Ajouter après :
    Code: Tout sélectionner
    			<!-- EVENT mcp_forum_actions_append -->

  3. Trouver (vers ligne 84) :
    Code: Tout sélectionner
    </table>
    {S_FORM_TOKEN}
    </form>

    Ajouter avant :
    Code: Tout sélectionner
    <!-- EVENT mcp_forum_actions_after -->

template/memberlist_search.html

  1. Trouver (vers ligne 55) :
    Code: Tout sélectionner
    			for (var r = 0; r < rb.length; r++)
    			{

    Ajouter après :
    Code: Tout sélectionner
    				if (rb[r].name.substr(0, name.length) == name && rb[r].disabled !== true)

template/memberlist_team.html

  1. Trouver (vers ligne 20) :
    Code: Tout sélectionner
    	<td class="gen" align="center"><strong>{group.user.USERNAME_FULL}</strong><!-- IF group.user.S_INACTIVE --> <em>({L_INACTIVE})</em><!-- ENDIF --></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td class="gen" align="center"><!-- EVENT memberlist_team_username_prepend --><strong>{group.user.USERNAME_FULL}</strong><!-- IF group.user.S_INACTIVE --> <em>({L_INACTIVE})</em><!-- ENDIF --><!-- EVENT memberlist_team_username_append --></td>

template/overall_header.html

  1. Trouver (vers ligne 86) :
    Code: Tout sélectionner
    		if (rb[r].name.substr(0, name.length) == name)

    Remplacer par :
    Code: Tout sélectionner
    		if (rb[r].name.substr(0, name.length) == name && rb[r].disabled !== true)

template/ucp_main_front.html

  1. Trouver (vers ligne 38) :
    Code: Tout sélectionner
    <!-- EVENT ucp_main_front_user_activity_before -->
    	<td class="row1" colspan="3">
    		<table width="100%" cellspacing="1" cellpadding="4">

    Ajouter après :
    Code: Tout sélectionner
    		<!-- EVENT ucp_main_front_user_activity_prepend -->

  2. Trouver (vers ligne 62) :
    Code: Tout sélectionner
    				<td class="genmed">{WARNING_IMG} [ <b>{WARNINGS}</b> ]</td>
    			</tr>
    		<!-- ENDIF -->

    Ajouter après :
    Code: Tout sélectionner
    		<!-- EVENT ucp_main_front_user_activity_append -->


template/ucp_register.html

  1. Trouver (vers ligne 90) :
    Code: Tout sélectionner
    		<td class="row3" colspan="2"><span class="gensmall">{L_COPPA_EXPLAIN}</span></td>
    	</tr>
    <!-- ENDIF -->

    Ajouter après :
    Code: Tout sélectionner
    <!-- EVENT ucp_register_buttons_before -->

style.cfg

  1. Trouver (vers ligne 24) :
    Code: Tout sélectionner
    style_version = 3.1.10
    phpbb_version = 3.1.10

    Remplacer par :
    Code: Tout sélectionner
    style_version = 3.1.11
    phpbb_version = 3.1.11

Retour à la documentation : mettre à jour son forum phpBB 3.1.x
Avatar de l’utilisateur
Mazeltof
Resp. des graphistes
Resp. des graphistes
 
Rédigé le: 18 Juil 2017 à 10:27
Articles: 21
Noter cet article: 123456 Votants: Aucun

Retourner vers Mise à jour


cron