Mise à jour des styles de phpBB 3.2.8 à 3.2.9 Facile

Mise à jour des styles de phpBB 3.2.8 à 3.2.9

Détail des modifications des styles de phpBB 3.2.8 à 3.2.9


Détail des modifications prosilver

Liste des fichiers à modifier :
  • template/bbcode.html
  • template/forumlist_body.html
  • template/mcp_topic.html
  • template/memberlist_body.html
  • template/navbar_header.html
  • template/overall_footer.html
  • template/plupload.html
  • template/posting_attach_body.html
  • template/posting_buttons.html
  • template/posting_review.html
  • template/posting_topic_review.html
  • template/search_results.html
  • template/ucp_agreement.html
  • template/ucp_profile_profile_info.html
  • template/viewforum_body.html
  • template/viewtopic_body.html
  • style.cfg


template/bbcode.html

  1. Trouver (vers ligne 36) :
    Code: Tout sélectionner
    				<xsl:if test="@post_url">
    					<xsl:text> </xsl:text>
    					<a href="{@post_url}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash">&#8593;</a>
    				</xsl:if>
    				<xsl:if test="@date">
    					<div class="responsive-hide"><xsl:value-of select="@date"/></div>
    				</xsl:if>

    Remplacer par :
    Code: Tout sélectionner
    				<xsl:if test="@post_url">
    					<xsl:text> </xsl:text>
    					<a href="{@post_url}" data-post-id="{@post_id}" onclick="if(document.getElementById(hash.substr(1)))href=hash">&#8593;</a>
    				</xsl:if>
    				<xsl:if test="@msg_url">
    					<xsl:text> </xsl:text>
    					<a href="{@msg_url}" data-msg-id="{@msg_id}">&#8593;</a>
    				</xsl:if>
    				<xsl:if test="@date">
    					<div class="responsive-hide"><xsl:value-of select="@date"/></div>
    				</xsl:if>

template/forumlist_body.html

  1. Trouver (vers ligne 102) :
    Code: Tout sélectionner
    									</a>
    								<!-- ENDIF -->
    								<br />{forumrow.LAST_POST_TIME}
    							<!-- ELSE -->

    Remplacer par :
    Code: Tout sélectionner
    									</a>
    								<!-- ENDIF -->
    								<br /><time datetime="{forumrow.LAST_POST_TIME_RFC3339}">{forumrow.LAST_POST_TIME}</time>
    							<!-- ELSE -->

template/mcp_topic.html

  1. Trouver (vers ligne 119) :
    Code: Tout sélectionner
    				<!-- EVENT mcp_topic_postrow_post_details_before -->
    				<p class="author">
    					<a href="#pr{postrow.POST_ID}" title="{postrow.MINI_POST}">
    						<i class="icon fa-file fa-fw icon-lightgray icon-tiny" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span>

    Remplacer par :
    Code: Tout sélectionner
    				<!-- EVENT mcp_topic_postrow_post_details_before -->
    				<p class="author">
    					<a href="{postrow.U_MINI_POST}" title="{postrow.MINI_POST}">
    						<i class="icon fa-file fa-fw icon-lightgray icon-tiny" aria-hidden="true"></i><span class="sr-only">{postrow.MINI_POST}</span>

template/memberlist_body.html

  1. Trouver (vers ligne 29) :
    Code: Tout sélectionner
    			<!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF -->
    			{% EVENT memberlist_body_group_rank_before %}
    			<!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF -->
    			<!-- IF GROUP_RANK -->{GROUP_RANK}<!-- ENDIF -->
    			{% EVENT memberlist_body_group_rank_after %}

    Remplacer par :
    Code: Tout sélectionner
    			<!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF -->
    			{% EVENT memberlist_body_group_rank_before %}
    			{% if RANK_IMG %}{{ RANK_IMG }}{% endif %}
    			{% if GROUP_RANK %}
    				{% if not RANK_IMG %}
    					{{ lang('GROUP_RANK') ~ lang('COLON') }}
    				{% endif %}
    				{{ GROUP_RANK }}
    			{% endif %}
    			{% EVENT memberlist_body_group_rank_after %}

  2. Trouver (vers ligne 127) :
    Code: Tout sélectionner
    		<td class="posts"><!-- IF memberrow.POSTS and S_DISPLAY_SEARCH --><a href="{memberrow.U_SEARCH_USER}" title="{L_SEARCH_USER_POSTS}">{memberrow.POSTS}</a><!-- ELSE -->{memberrow.POSTS}<!-- ENDIF --></td>
    		<td class="info"><!-- BEGIN custom_fields --><div>{memberrow.custom_fields.PROFILE_FIELD_VALUE}</div><!-- BEGINELSE -->&nbsp;<!-- END custom_fields --></td>
    		<td>{memberrow.JOINED}</td>

    Remplacer par :
    Code: Tout sélectionner
    		<td class="posts"><!-- IF memberrow.POSTS and S_DISPLAY_SEARCH --><a href="{memberrow.U_SEARCH_USER}" title="{L_SEARCH_USER_POSTS}">{memberrow.POSTS}</a><!-- ELSE -->{memberrow.POSTS}<!-- ENDIF --></td>
    		<td class="info">
    			{%- for field in memberrow.custom_fields -%}
    				<div>{% if field.S_PROFILE_CONTACT %}<a href="{{ field.PROFILE_FIELD_CONTACT }}">{% endif %}{{ field.PROFILE_FIELD_VALUE }}{% if field.S_PROFILE_CONTACT %}</a>{% endif %}</div>
    			{%- else -%}
    				&nbsp;
    			{%- endfor -%}
    		</td>
    		<td>{memberrow.JOINED}</td>

template/navbar_header.html

  1. Trouver (vers ligne 162) :
    Code: Tout sélectionner
    		<!-- EVENT navbar_header_user_profile_append -->
    	<!-- ELSE -->
    		<li class="rightside"  data-skip-responsive="true">

    Remplacer par :
    Code: Tout sélectionner
    		<!-- EVENT navbar_header_user_profile_append -->
    	<!-- ELSE IF not S_IS_BOT -->
    		<li class="rightside"  data-skip-responsive="true">

  2. Trouver (vers ligne 183) :
    Code: Tout sélectionner
    		<!-- EVENT overall_header_breadcrumbs_before -->
    		<li class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
    			<!-- IF U_SITE_HOME -->
    				<span class="crumb" {$MICRODATA}><a href="{U_SITE_HOME}" itemtype="https://schema.org/Thing" itemprop="item" data-navbar-reference="home"><i class="icon fa-home fa-fw" aria-hidden="true"></i><span itemprop="name">{L_SITE_HOME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    			<!-- ENDIF -->
    			<!-- EVENT overall_header_breadcrumb_prepend -->
    				<span class="crumb" {$MICRODATA}><a href="{U_INDEX}" itemtype="https://schema.org/Thing" itemprop="item" accesskey="h" data-navbar-reference="index"><!-- IF not U_SITE_HOME --><i class="icon fa-home fa-fw"></i><!-- ENDIF --><span itemprop="name">{L_INDEX}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    
    			<!-- BEGIN navlinks -->
    				<!-- EVENT overall_header_navlink_prepend -->
    				<span class="crumb" {$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemtype="https://schema.org/Thing" itemprop="item"><span itemprop="name">{navlinks.FORUM_NAME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    				<!-- EVENT overall_header_navlink_append -->
    			<!-- END navlinks -->
    			<!-- EVENT overall_header_breadcrumb_append -->

    Remplacer par :
    Code: Tout sélectionner
    		<!-- EVENT overall_header_breadcrumbs_before -->
    		<li class="breadcrumbs" itemscope itemtype="http://schema.org/BreadcrumbList">
    			<!-- IF U_SITE_HOME -->
    				<span class="crumb" {$MICRODATA}><a href="{U_SITE_HOME}" itemtype="https://schema.org/Thing" itemscope itemprop="item" data-navbar-reference="home"><i class="icon fa-home fa-fw" aria-hidden="true"></i><span itemprop="name">{L_SITE_HOME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    			<!-- ENDIF -->
    			<!-- EVENT overall_header_breadcrumb_prepend -->
    				<span class="crumb" {$MICRODATA}><a href="{U_INDEX}" itemtype="https://schema.org/Thing" itemscope itemprop="item" accesskey="h" data-navbar-reference="index"><!-- IF not U_SITE_HOME --><i class="icon fa-home fa-fw"></i><!-- ENDIF --><span itemprop="name">{L_INDEX}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    
    			<!-- BEGIN navlinks -->
    				<!-- EVENT overall_header_navlink_prepend -->
    				<span class="crumb" {$MICRODATA}<!-- IF navlinks.MICRODATA --> {navlinks.MICRODATA}<!-- ENDIF -->><a href="{navlinks.U_VIEW_FORUM}" itemtype="https://schema.org/Thing" itemscope itemprop="item"><span itemprop="name">{navlinks.FORUM_NAME}</span></a><meta itemprop="position" content="{{ navlink_position }}{% set navlink_position = navlink_position + 1 %}" /></span>
    				<!-- EVENT overall_header_navlink_append -->
    			<!-- END navlinks -->
    			<!-- EVENT overall_header_breadcrumb_append -->

template/overall_footer.html

  1. Trouver (vers ligne 19) :
    Code: Tout sélectionner
    		<!-- EVENT overall_footer_copyright_append -->
    		<p class="footer-row">
    			<a class="footer-link" href="{{ U_PRIVACY }}" title="{{ lang('PRIVACY_LINK') }}" role="menuitem">

    Remplacer par :
    Code: Tout sélectionner
    		<!-- EVENT overall_footer_copyright_append -->
    		<p class="footer-row" role="menu">
    			<a class="footer-link" href="{{ U_PRIVACY }}" title="{{ lang('PRIVACY_LINK') }}" role="menuitem">

template/plupload.html

  1. Trouver (vers ligne 46) :
    Code: Tout sélectionner
    		chunk_size: '{CHUNK_SIZE}b',
    		unique_names: true,
    		filters: [{FILTERS}],
    		{S_RESIZE}

    Remplacer par :
    Code: Tout sélectionner
    		chunk_size: '{CHUNK_SIZE}b',
    		unique_names: true,
    		filters: {
    			mime_types: [
    				{FILTERS}
    			],
    			mime_types_max_file_size: [
    				{FILTERS}
    			],
    		},
    		{S_RESIZE}

template/posting_attach_body.html

  1. Trouver (vers ligne 39) :
    Code: Tout sélectionner
    								<span class="file-name ellipsis-text"></span>
    								<span class="attach-controls">
    									<input type="button" value="{L_PLACE_INLINE}" class="button2 hidden file-inline-bbcode" />&nbsp;
    									<input type="button" value="{L_DELETE_FILE}" class="button2 file-delete" />

    Remplacer par :
    Code: Tout sélectionner
    								<span class="file-name ellipsis-text"></span>
    								<span class="attach-controls">
    									{% if S_BBCODE_ALLOWED %}<input type="button" value="{{ lang('PLACE_INLINE') }}" class="button2 hidden file-inline-bbcode" />&nbsp;{% endif %}
    									<input type="button" value="{L_DELETE_FILE}" class="button2 file-delete" />

  2. Trouver (vers ligne 65) :
    Code: Tout sélectionner
    								{% EVENT posting_attach_body_attach_row_controls_prepend %}
    								<span class="attach-controls">
    									<!-- IF S_INLINE_ATTACHMENT_OPTIONS --><input type="button" value="{L_PLACE_INLINE}" class="button2 file-inline-bbcode" />&nbsp; <!-- ENDIF -->
    									<input type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" class="button2 file-delete" />

    Remplacer par :
    Code: Tout sélectionner
    								{% EVENT posting_attach_body_attach_row_controls_prepend %}
    								<span class="attach-controls">
    									{% if S_BBCODE_ALLOWED and S_INLINE_ATTACHMENT_OPTIONS %}<input type="button" value="{{ lang('PLACE_INLINE') }}" class="button2 file-inline-bbcode" />&nbsp;{% endif %}
    									<input type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" class="button2 file-delete" />

template/posting_buttons.html

  1. Trouver et supprimer (vers ligne 13) :
    Code: Tout sélectionner
    	// Helpline messages
    	var help_line = {
    		b: '{LA_BBCODE_B_HELP}',
    		i: '{LA_BBCODE_I_HELP}',
    		u: '{LA_BBCODE_U_HELP}',
    		q: '{LA_BBCODE_Q_HELP}',
    		c: '{LA_BBCODE_C_HELP}',
    		l: '{LA_BBCODE_L_HELP}',
    		o: '{LA_BBCODE_O_HELP}',
    		p: '{LA_BBCODE_P_HELP}',
    		w: '{LA_BBCODE_W_HELP}',
    		a: '{LA_BBCODE_A_HELP}',
    		s: '{LA_BBCODE_S_HELP}',
    		f: '{LA_BBCODE_F_HELP}',
    		y: '{LA_BBCODE_Y_HELP}',
    		d: '{LA_BBCODE_D_HELP}'
    		<!-- BEGIN custom_tags -->
    			,cb_{custom_tags.BBCODE_ID}: '{custom_tags.A_BBCODE_HELPLINE}'
    		<!-- END custom_tags -->
    	}
    

  2. Trouver (vers ligne 119) :
    Code: Tout sélectionner
    	<!-- BEGIN custom_tags -->
    	<button type="button" class="button button-secondary bbcode-{custom_tags.BBCODE_TAG_CLEAN}" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}">
    		{custom_tags.BBCODE_TAG}
    	</button>
    	<!-- END custom_tags -->

    Remplacer par :
    Code: Tout sélectionner
    	<!-- BEGIN custom_tags -->
    	<button type="button" class="button button-secondary bbcode-{custom_tags.BBCODE_TAG_CLEAN}" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{{ custom_tags.BBCODE_HELPLINE|e('html_attr') }}">
    {custom_tags.BBCODE_TAG}
    		{custom_tags.BBCODE_TAG}
    	</button>
    	<!-- END custom_tags -->

template/posting_review.html

  1. Trouver (vers ligne 15) :
    Code: Tout sélectionner
    	<div class="postbody" id="ppr{post_review_row.POST_ID}">
    		<h3><a href="#ppr{post_review_row.POST_ID}">{post_review_row.POST_SUBJECT}</a></h3>
    		<p class="author">

    Remplacer par :
    Code: Tout sélectionner
    	<div class="postbody" id="ppr{post_review_row.POST_ID}">
    		<h3><a href="{post_review_row.U_MINI_POST}">{post_review_row.POST_SUBJECT}</a></h3>
    		<p class="author">


template/posting_topic_review.html

  1. Trouver (vers ligne 26) :
    Code: Tout sélectionner
    		<div class="postbody" id="pr{topic_review_row.POST_ID}">
    			<h3><a href="#pr{topic_review_row.POST_ID}">{topic_review_row.POST_SUBJECT}</a></h3>
    
    			<!-- IF (topic_review_row.POSTER_QUOTE and topic_review_row.DECODED_MESSAGE) or topic_review_row.U_MCP_DETAILS -->

    Remplacer par :
    Code: Tout sélectionner
    		<div class="postbody" id="pr{topic_review_row.POST_ID}">
    			<h3><a href="{topic_review_row.U_MINI_POST}">{topic_review_row.POST_SUBJECT}</a></h3>
    
    			<!-- IF (topic_review_row.POSTER_QUOTE and topic_review_row.DECODED_MESSAGE) or topic_review_row.U_MCP_DETAILS -->

template/search_results.html

  1. Trouver (vers ligne 110) :
    Code: Tout sélectionner
    								<div class="responsive-show" style="display: none;">
    									{L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT search_results_last_post_author_username_prepend -->{searchresults.LAST_POST_AUTHOR_FULL}<!-- EVENT search_results_last_post_author_username_append --> &laquo; <a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{searchresults.LAST_POST_TIME}</a>
    									<br />{L_POSTED} {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
    								</div>

    Remplacer par :
    Code: Tout sélectionner
    								<div class="responsive-show" style="display: none;">
    									{L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT search_results_last_post_author_username_prepend -->{searchresults.LAST_POST_AUTHOR_FULL}<!-- EVENT search_results_last_post_author_username_append --> &laquo; <a href="{searchresults.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><time datetime="{searchresults.LAST_POST_TIME_RFC3339}">{searchresults.LAST_POST_TIME}</time></a>
    									<br />{L_POSTED} {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
    								</div>

  2. Trouver (vers ligne 120) :
    Code: Tout sélectionner
    								{% EVENT topiclist_row_topic_by_author_before %}
    								{L_POST_BY_AUTHOR} <!-- EVENT search_results_topic_author_username_prepend -->{searchresults.TOPIC_AUTHOR_FULL}<!-- EVENT search_results_topic_author_username_append --> &raquo; {searchresults.FIRST_POST_TIME} &raquo; {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
    								{% EVENT topiclist_row_topic_by_author_after %}

    Remplacer par :
    Code: Tout sélectionner
    								{% EVENT topiclist_row_topic_by_author_before %}
    								{L_POST_BY_AUTHOR} <!-- EVENT search_results_topic_author_username_prepend -->{searchresults.TOPIC_AUTHOR_FULL}<!-- EVENT search_results_topic_author_username_append --> &raquo; <time datetime="{searchresults.FIRST_POST_TIME_RFC3339}">{searchresults.FIRST_POST_TIME}</time> &raquo; {L_IN} <a href="{searchresults.U_VIEW_FORUM}">{searchresults.FORUM_TITLE}</a>
    								{% EVENT topiclist_row_topic_by_author_after %}

  3. Trouver (vers ligne 152) :
    Code: Tout sélectionner
    							<!-- ENDIF -->
    							<br />{searchresults.LAST_POST_TIME}
    						</span>
    					</dd>
    				</dl>
    			</li>

    Remplacer par :
    Code: Tout sélectionner
    							<!-- ENDIF -->
    							<br /><time datetime="{searchresults.LAST_POST_TIME_RFC3339}">{searchresults.LAST_POST_TIME}</time>
    						</span>
    					</dd>
    				</dl>
    			</li>

template/ucp_agreement.html

  1. Trouver (vers ligne 45) :
    Code: Tout sélectionner
    			<!-- IF S_SHOW_COPPA -->
    			<strong><a href="{U_COPPA_NO}" class="button1">{L_COPPA_NO}</a></strong>&nbsp; <a href="{U_COPPA_YES}" class="button2">{L_COPPA_YES}</a>
    			<!-- ELSE -->

    Remplacer par :
    Code: Tout sélectionner
    			<!-- IF S_SHOW_COPPA -->
    			<input type="submit" name="coppa_no" id="coppa_no" value="{{ L_COPPA_NO }}" class="button1" />
    			<input type="submit" name="coppa_yes" id="coppa_yes" value="{{ L_COPPA_YES }}" class="button2" />
    			<!-- ELSE -->

template/ucp_profile_profile_info.html

  1. Trouver (vers ligne 14) :
    Code: Tout sélectionner
    	<!-- IF S_BIRTHDAYS_ENABLED -->
    		<dl>
    			<dt><label for="bday_day">{L_BIRTHDAY}{L_COLON}</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt>
    			<dd>

    Remplacer par :
    Code: Tout sélectionner
    	<!-- IF S_BIRTHDAYS_ENABLED -->
    		<dl>
    			<dt><label for="bday_day">{L_BIRTHDAY}{L_COLON}{% EVENT ucp_profile_profile_info_birthday_label_append %}</label><br /><span>{L_BIRTHDAY_EXPLAIN}</span></dt>
    			<dd>

template/viewforum_body.html

  1. Trouver (vers ligne 189) :
    Code: Tout sélectionner
    						<div class="responsive-show" style="display: none;">
    							{L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append --> &laquo; <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}">{topicrow.LAST_POST_TIME}</a>
    							<!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><br />{L_POSTED} {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF -->
    						</div>

    Remplacer par :
    Code: Tout sélectionner
    						<div class="responsive-show" style="display: none;">
    							{L_LAST_POST} {L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_last_post_author_username_prepend -->{topicrow.LAST_POST_AUTHOR_FULL}<!-- EVENT viewforum_body_last_post_author_username_append --> &laquo; <a href="{topicrow.U_LAST_POST}" title="{L_GOTO_LAST_POST}"><time datetime="{topicrow.LAST_POST_TIME_RFC3339}">{topicrow.LAST_POST_TIME}</time></a>
    							<!-- IF topicrow.S_POST_GLOBAL and FORUM_ID != topicrow.FORUM_ID --><br />{L_POSTED} {L_IN} <a href="{topicrow.U_VIEW_FORUM}">{topicrow.FORUM_NAME}</a><!-- ENDIF -->
    						</div>

  2. Trouver (vers ligne 201) :
    Code: Tout sélectionner
    							{% EVENT topiclist_row_topic_by_author_before %}
    							{L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_topic_author_username_prepend -->{topicrow.TOPIC_AUTHOR_FULL}<!-- EVENT viewforum_body_topic_author_username_append --> &raquo; {topicrow.FIRST_POST_TIME}
    							{% EVENT topiclist_row_topic_by_author_after %}

    Remplacer par :
    Code: Tout sélectionner
    							{% EVENT topiclist_row_topic_by_author_before %}
    							{L_POST_BY_AUTHOR} <!-- EVENT viewforum_body_topic_author_username_prepend -->{topicrow.TOPIC_AUTHOR_FULL}<!-- EVENT viewforum_body_topic_author_username_append --> &raquo; <time datetime="{topicrow.FIRST_POST_TIME_RFC3339}">{topicrow.FIRST_POST_TIME}</time>
    							{% EVENT topiclist_row_topic_by_author_after %}

  3. Trouver (vers ligne 234) :
    Code: Tout sélectionner
    						<!-- ENDIF -->
    						<br />{topicrow.LAST_POST_TIME}
    					</span>
    				</dd>
    			</dl>

    Remplacer par :
    Code: Tout sélectionner
    						<!-- ENDIF -->
    						<br /><time datetime="{topicrow.LAST_POST_TIME_RFC3339}">{topicrow.LAST_POST_TIME}</time>
    					</span>
    				</dd>
    			</dl>

template/viewtopic_body.html

  1. Trouver (vers ligne 226) :
    Code: Tout sélectionner
    			<!-- EVENT viewtopic_body_post_subject_before -->
    			<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></h3>

    Remplacer par :
    Code: Tout sélectionner
    			<!-- EVENT viewtopic_body_post_subject_before -->
    			<h3 <!-- IF postrow.S_FIRST_ROW -->class="first"<!-- ENDIF -->><!-- IF postrow.POST_ICON_IMG --><img src="{T_ICONS_PATH}{postrow.POST_ICON_IMG}" width="{postrow.POST_ICON_IMG_WIDTH}" height="{postrow.POST_ICON_IMG_HEIGHT}" alt="{postrow.POST_ICON_IMG_ALT}" title="{postrow.POST_ICON_IMG_ALT}" /> <!-- ENDIF --><a href="{postrow.U_MINI_POST}">{postrow.POST_SUBJECT}</a></h3>

  2. Trouver (vers ligne 291) :
    Code: Tout sélectionner
    				<!-- ENDIF -->
    				<span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> &raquo; </span>{postrow.POST_DATE}
    			</p>

    Remplacer par :
    Code: Tout sélectionner
    				<!-- ENDIF -->
    				<span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> &raquo; </span><time datetime="{postrow.POST_DATE_RFC3339}">{postrow.POST_DATE}</time>
    			</p>

style.cfg

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

    Remplacer par :
    Code: Tout sélectionner
    style_version = 3.2.9
    phpbb_version = 3.2.9
Avatar de l’utilisateur
Mazeltof
Resp. des graphistes
Resp. des graphistes
 
Rédigé le: 11 Jan 2020 à 10:01
Articles: 21
Noter cet article: 123456 Votants: 1
Mots-clés: Maj, style, phpBB, 3.2.8, 3.2.9

Retourner vers Mise à jour


cron