Mise à jour des styles de phpBB 3.1.3 à 3.1.4 Facile

Mise à jour des styles de phpBB 3.1.3 à 3.1.4

Détail des modifications des styles de phpBB 3.1.3 à 3.1.4


Modifications des styles de phpBB 3.1.3 à 3.1.4

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/forum_fn.js
  • template/forumlist_body.html
  • template/mcp_logs.html
  • template/mcp_notes_user.html
  • template/memberlist_email.html
  • template/navbar_footer.html
  • template/overall_footer.html
  • template/overall_header.html
  • template/posting_editor.html
  • template/posting_pm_layout.html
  • template/posting_poll_body.html
  • template/search_results.html
  • template/simple_footer.html
  • template/simple_header.html
  • template/ucp_profile_autologin_keys.html
  • template/ucp_profile_profile_info.html
  • template/ucp_profile_reg_details.html
  • template/viewforum_body.html
  • template/viewtopic_body.html
  • theme/bidi.css
  • theme/buttons.css
  • theme/colours.css
  • theme/common.css
  • theme/content.css
  • style.cfg

template/forum_fn.js

  1. Trouver (vers ligne 379) :
    Code: Tout sélectionner
    				diff = $left.outerWidth(true) - $left.width();

    Remplacer par :
    Code: Tout sélectionner
    				diff = $left.outerWidth(true) - $left.width(),
    				minWidth = Math.max($this.width() / 3, 240),
    				maxWidth;

  2. Trouver (vers ligne 384) :
    Code: Tout sélectionner
    				width += $(this).outerWidth(true);

    Remplacer par :
    Code: Tout sélectionner
    				var $this = $(this);
    				if ($this.is(':visible')) {
    					width += $this.outerWidth(true);
    				}

  3. Trouver (vers ligne 389) :
    Code: Tout sélectionner
    			$left.css('max-width', Math.floor($this.width() - width - diff) + 'px');

    Remplacer par :
    Code: Tout sélectionner
    			maxWidth = $this.width() - width - diff;
    			$left.css('max-width', Math.floor(Math.max(maxWidth, minWidth)) + 'px');


  4. Trouver (vers ligne 420) :
    Code: Tout sélectionner
    				width = $body.width();

    Remplacer par :
    Code: Tout sélectionner
    				width;
    
    			// Test max-width set in code for .navlinks above
    			width = parseInt($this.css('max-width'));
    			if (!width) {
     				width = $body.width();
    			}

template/forumlist_body.html

  1. Trouver (vers ligne 48) :
    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.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 -->

    Dans la ligne, trouver :
    Code: Tout sélectionner
    <!-- IF forumrow.subforum.UNREAD -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF forumrow.subforum.S_UNREAD -->

template/mcp_logs.html

  1. Trouver (vers ligne 25) :
    Code: Tout sélectionner
    		<th>{L_USERNAME}</th>
    		<th style="text-align: center">{L_IP}</th>
    		<th style="text-align: center">{L_TIME}</th>
    		<th>{L_ACTION}</th>

    Remplacer par :
    Code: Tout sélectionner
    		<th class="name">{L_USERNAME}</th>
    		<th class="center">{L_IP}</th>
    		<th class="center">{L_TIME}</th>
    		<th class="name">{L_ACTION}</th>

  2. Trouver (vers ligne 37) :
    Code: Tout sélectionner
    			<td style="text-align: center">{log.IP}</td>
    			<td style="text-align: center">{log.DATE}</td>

    Remplacer par :
    Code: Tout sélectionner
    			<td class="center">{log.IP}</td>
    			<td class="center">{log.DATE}</td>

template/mcp_notes_user.html

  1. Trouver (vers ligne 68) :
    Code: Tout sélectionner
    		<th>{L_REPORT_BY}</th>
    		<th style="text-align: center">{L_IP}</th>
    		<th style="text-align: center">{L_TIME}</th>

    Remplacer par :
    Code: Tout sélectionner
    		<th class="name reportby">{L_REPORT_BY}</th>
    		<th class="center">{L_IP}</th>
    		<th class="center">{L_TIME}</th>

  2. Trouver (vers ligne 79) :
    Code: Tout sélectionner
    		<td style="text-align: center">{usernotes.IP}</td>
    		<td style="text-align: center">{usernotes.REPORT_AT}</td>

    Remplacer par :
    Code: Tout sélectionner
    		<td class="center">{usernotes.IP}</td>
    		<td class="center">{usernotes.REPORT_AT}</td>

  3. Trouver (vers ligne 83) :
    Code: Tout sélectionner
    		<!-- IF S_CLEAR_ALLOWED --><td style="width: 5%; text-align: center;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

    Remplacer par :
    Code: Tout sélectionner
    		<!-- IF S_CLEAR_ALLOWED --><td class="center" style="width: 5%;"><input type="checkbox" name="marknote[]" id="note-{usernotes.ID}" value="{usernotes.ID}" /></td><!-- ENDIF -->

template/memberlist_email.html

  1. Trouver (vers ligne 43) :
    Code: Tout sélectionner
    				<dt><label>{L_RECIPIENT}:</label></dt>

    Remplacer par :
    Code: Tout sélectionner
    				<dt><label>{L_RECIPIENT}{L_COLON}</label></dt>

  2. Trouver (vers ligne 48) :
    Code: Tout sélectionner
    				<dt><label for="email">{L_SENDER_EMAIL_ADDRESS}:</label></dt>

    Remplacer par :
    Code: Tout sélectionner
    				<dt><label for="email">{L_SENDER_EMAIL_ADDRESS}{L_COLON}</label></dt>

  3. Trouver (vers ligne 52) :
    Code: Tout sélectionner
    				<dt><label for="name">{L_SENDER_NAME}:</label></dt>

    Remplacer par :
    Code: Tout sélectionner
    				<dt><label for="name">{L_SENDER_NAME}{L_COLON}</label></dt>

  4. Trouver (vers ligne 57) :
    Code: Tout sélectionner
    				<dt><label for="subject">{L_SUBJECT}:</label></dt>

    Remplacer par :
    Code: Tout sélectionner
    				<dt><label for="subject">{L_SUBJECT}{L_COLON}</label></dt>

template/navbar_footer.html

  1. Trouver (vers ligne 1) :
    Code: Tout sélectionner
    <div class="navbar">

    Remplacer par :
    Code: Tout sélectionner
    <div class="navbar" role="navigation">

template/overall_footer.html

  1. Trouver (vers ligne 6) :
    Code: Tout sélectionner
    <div id="page-footer">

    Remplacer par :
    Code: Tout sélectionner
    <div id="page-footer" role="contentinfo">

template/overall_header.html

  1. Trouver (vers ligne 5) :
    Code: Tout sélectionner
    <meta name="viewport" content="width=device-width" />

    Remplacer par :
    Code: Tout sélectionner
    <meta name="viewport" content="width=device-width, initial-scale=1" />

  2. Trouver (vers ligne 62) :
    Code: Tout sélectionner
    		<div class="headerbar">

    Remplacer par :
    Code: Tout sélectionner
    		<div class="headerbar" role="banner">

  3. Trouver (vers ligne 72) :
    Code: Tout sélectionner
    			<!-- IF S_DISPLAY_SEARCH and not S_IN_SEARCH -->

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

  4. Trouver (vers ligne 74) :
    Code: Tout sélectionner
    			<div id="search-box" class="search-box search-header">

    Remplacer par :
    Code: Tout sélectionner
    			<div id="search-box" class="search-box search-header" role="search">

  5. Trouver (vers ligne 89) :
    Code: Tout sélectionner
    		<!-- INCLUDE navbar_header.html -->

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

  6. Trouver (vers ligne 95) :
    Code: Tout sélectionner
    	<div id="page-body">

    Remplacer par :
    Code: Tout sélectionner
    	<div id="page-body" role="main">

template/posting_editor.html

  1. Trouver (vers ligne 38) :
    Code: Tout sélectionner
    	<div id="smiley-box">

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

  2. Trouver (vers ligne 50) :
    Code: Tout sélectionner
    		<!-- IF BBCODE_STATUS -->

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

  3. Trouver (vers ligne 62) :
    Code: Tout sélectionner
    		<!-- IF S_EDIT_DRAFT || S_DISPLAY_REVIEW -->

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

template/posting_pm_layout.html

  1. Trouver (vers ligne 22) :
    Code: Tout sélectionner
    	<!-- INCLUDE posting_pm_header.html -->

    Remplacer par :
    Code: Tout sélectionner
    	<!-- EVENT posting_pm_layout_include_pm_header_before -->
    	<!-- INCLUDE posting_pm_header.html -->
    	<!-- EVENT posting_pm_layout_include_pm_header_after -->

template/posting_poll_body.html

  1. Trouver (vers ligne 47) :
    Code: Tout sélectionner
    	<!-- ELSEIF S_POLL_DELETE -->

    Remplacer par :
    Code: Tout sélectionner
    	<!-- ENDIF -->
    	<!-- EVENT posting_poll_body_options_after -->
    
    	<!-- IF S_POLL_DELETE -->

template/search_results.html

  1. Trouver (vers ligne 1) :
    Code: Tout sélectionner
    <!-- INCLUDE overall_header.html -->
    

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

  2. Trouver (vers ligne 11) :
    Code: Tout sélectionner
    	<p><a class="arrow-{S_CONTENT_FLOW_BEGIN}" href="{U_SEARCH_TOPIC}">{L_RETURN_TO_TOPIC}</a></p>

    Dans la ligne, trouver :
    Code: Tout sélectionner
    <p>

    Remplacer par :
    Code: Tout sélectionner
    <p class="return-link">

  3. Trouver (vers ligne 13) :
    Code: Tout sélectionner
    	<p><a class="arrow-{S_CONTENT_FLOW_BEGIN}" href="{U_SEARCH}" title="{L_SEARCH_ADV}">{L_GO_TO_SEARCH_ADV}</a></p>

    Dans la ligne, trouver :
    Code: Tout sélectionner
    <p>

    Remplacer par :
    Code: Tout sélectionner
    <p class="advanced-search-link">

  4. Trouver (vers ligne 16) :
    Code: Tout sélectionner
    <!-- IF .pagination or SEARCH_MATCHES or TOTAL_MATCHES or PAGE_NUMBER -->

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

  5. Trouver (vers ligne 22) :
    Code: Tout sélectionner
    		<div class="search-box">

    Remplacer par :
    Code: Tout sélectionner
    		<div class="search-box" role="search">

  6. Trouver (vers ligne 33) :
    Code: Tout sélectionner
    		<div class="pagination">

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

template/simple_footer.html

  1. Trouver (vers ligne 3) :
    Code: Tout sélectionner
    	<div class="copyright">{CREDIT_LINE}

    Remplacer par :
    Code: Tout sélectionner
    	<div class="copyright" role="contentinfo">{CREDIT_LINE}

template/simple_header.html

  1. Trouver (vers ligne 5) :
    Code: Tout sélectionner
    <meta name="viewport" content="width=device-width" />

    Remplacer par :
    Code: Tout sélectionner
    <meta name="viewport" content="width=device-width, initial-scale=1" />

  2. Trouver (vers ligne 39) :
    Code: Tout sélectionner
    	<div id="page-body">

    Remplacer par :
    Code: Tout sélectionner
    	<div id="page-body" role="main">

template/ucp_profile_autologin_keys.html

  1. Trouver (vers ligne 13) :
    Code: Tout sélectionner
    					<th>{L_LOGIN_KEY}</th>
    					<th>{L_IP}</th>
    					<th>{L_LOGIN_TIME}</th>
    					<th class="mark">{L_MARK}</th>

    Remplacer par :
    Code: Tout sélectionner
    					<th class="name">{L_LOGIN_KEY}</th>
    					<th class="center">{L_IP}</th>
    					<th class="center">{L_LOGIN_TIME}</th>
    					<th class="center mark">{L_MARK}</th>

  2. Trouver (vers ligne 23) :
    Code: Tout sélectionner
    					<td style="text-align: center">{sessions.IP}</td>
    					<td style="text-align: center">{sessions.LOGIN_TIME}</td>
    					<td style="text-align: center" class="mark"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}" /></td>

    Remplacer par :
    Code: Tout sélectionner
    					<td class="center">{sessions.IP}</td>
    					<td class="center">{sessions.LOGIN_TIME}</td>
    					<td class="center mark"><input type="checkbox" name="keys[]" value="{sessions.KEY}" id="{sessions.KEY}" /></td>

template/ucp_profile_profile_info.html

  1. Trouver (vers ligne 11) :
    Code: Tout sélectionner
    	<fieldset>
    	<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->

    Ajouter après :
    Code: Tout sélectionner
    	<fieldset>
    	<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->

  2. Trouver (vers ligne 38) :
    Code: Tout sélectionner
    	<!-- END profile_fields -->
    	</fieldset>

    Remplacer par :
    Code: Tout sélectionner
    	<!-- END profile_fields -->
    	<!-- EVENT ucp_profile_profile_info_after -->
    	</fieldset>

template/ucp_profile_reg_details.html

  1. Trouver (vers ligne 13) :
    Code: Tout sélectionner
    	<fieldset>
    	<!-- IF ERROR --><p class="error">{ERROR}</p><!-- ENDIF -->

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

  2. Trouver (vers ligne 33) :
    Code: Tout sélectionner
    	<!-- ENDIF -->
    	</fieldset>

    Remplacer par :
    Code: Tout sélectionner
    	<!-- ENDIF -->
    	<!-- EVENT ucp_profile_register_details_after -->
    	</fieldset>

template/viewforum_body.html

  1. Trouver (vers ligne 53) :
    Code: Tout sélectionner
    		<div class="search-box">

    Remplacer par :
    Code: Tout sélectionner
    		<div class="search-box" role="search">

template/viewtopic_body.html

  1. Trouver (vers ligne 45) :
    Code: Tout sélectionner
    		<div class="search-box">

    Remplacer par :
    Code: Tout sélectionner
    		<div class="search-box" role="search">

  2. Trouver (vers ligne 57) :
    Code: Tout sélectionner
    	<!-- IF .pagination or TOTAL_POSTS -->
    		<div class="pagination">
    			<!-- IF U_VIEW_UNREAD_POST and not S_IS_BOT --><a href="{U_VIEW_UNREAD_POST}" class="mark">{L_VIEW_UNREAD_POST}</a> &bull; <!-- ENDIF -->{TOTAL_POSTS}
    			<!-- IF .pagination -->
    				<!-- INCLUDE pagination.html -->
    			<!-- ELSE -->
    				&bull; {PAGE_NUMBER}
    			<!-- ENDIF -->
    		</div>
    	<!-- ENDIF -->

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

  3. Trouver (vers ligne 252) :
    Code: Tout sélectionner
    			<p class="author"><!-- IF S_IS_BOT -->{postrow.MINI_POST_IMG}<!-- ELSE --><a href="{postrow.U_MINI_POST}">{postrow.MINI_POST_IMG}</a><!-- 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
    			<!-- EVENT viewtopic_body_postrow_post_details_before -->
    			<p class="author"><!-- IF S_IS_BOT -->{postrow.MINI_POST_IMG}<!-- ELSE --><a href="{postrow.U_MINI_POST}">{postrow.MINI_POST_IMG}</a><!-- ENDIF --><span class="responsive-hide">{L_POST_BY_AUTHOR} <strong>{postrow.POST_AUTHOR_FULL}</strong> &raquo; </span>{postrow.POST_DATE} </p>
    			<!-- EVENT viewtopic_body_postrow_post_details_after -->

theme/bidi.css

  1. Trouver (vers ligne 185) :
    Code: Tout sélectionner
    /* column[1-2] styles are containers for two column layouts
       Also see tweaks.css */

    Remplacer par :
    Code: Tout sélectionner
    /* column[1-2] styles are containers for two column layouts */

  2. Trouver (vers ligne 315) :
    Code: Tout sélectionner
    .rtl a.top {
    	float: left;
    }

    Ajouter avant :
    Code: Tout sélectionner
    /* Notification mark read link */
    .rtl .dropdown-extended a.mark_read {
    	border-radius: 0 3px 3px 0;
    	left: 0;
    	right: auto;
    }
    

  3. Supprimer (vers ligne 605) :
    Code: Tout sélectionner
    /* Rollover buttons
       Based on: http://wellstyled.com/css-nopreload-rollovers.html
    ----------------------------------------*/

  4. Supprimer (vers ligne 982) :
    Code: Tout sélectionner
    /**
    * tweaks.css
    */
    

theme/buttons.css

  1. Supprimer (vers ligne 4) :
    Code: Tout sélectionner
    /* Rollover buttons
       Based on: http://wellstyled.com/css-nopreload-rollovers.html
    ----------------------------------------*/

  2. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    .button {
    	cursor: pointer;
    	display: inline-block;
    	height: 18px;

    Remplacer par :
    Code: Tout sélectionner
    .button {
    	cursor: pointer;
    	display: inline-block;
    	height: 18px;
    	line-height: 18px;

theme/colours.css

  1. Trouver (vers ligne 99) :
    Code: Tout sélectionner
    .bg3	{ background-color: #cadceb; }

    Remplacer par :
    Code: Tout sélectionner
    .bg3	{
    	background-color: #cadceb;
    }

  2. Trouver (vers ligne 168) :
    Code: Tout sélectionner
    .pagination li a {
    	color: #5C758C;
    	background-color: #ECEDEE;
    	border-color: #B4BAC0;
    }

    Remplacer par :
    Code: Tout sélectionner
    .pagination li a {
    	background-color: #ECEDEE;
    	border-color: #B4BAC0;
    	color: #5C758C;
    }

  3. Trouver (vers ligne 179) :
    Code: Tout sélectionner
    .pagination li.active span {
    	color: #FFFFFF;
    	background-color: #4692BF;
    	border-color: #4692BF;
    }

    Remplacer par :
    Code: Tout sélectionner
    .pagination li.active span {
    	background-color: #4692BF;
    	border-color: #4692BF;
    	color: #FFFFFF;
    }

  4. Trouver (vers ligne 185) :
    Code: Tout sélectionner
    .pagination li a:hover, .pagination .dropdown-visible a.dropdown-trigger, .nojs .pagination .dropdown-container:hover a.dropdown-trigger {
    	border-color: #368AD2;
    	background-color: #368AD2;
    	color: #FFFFFF;
    }

    Remplacer par :
    Code: Tout sélectionner
    .pagination li a:hover, .pagination .dropdown-visible a.dropdown-trigger, .nojs .pagination .dropdown-container:hover a.dropdown-trigger {
    	background-color: #368AD2;
    	border-color: #368AD2;
    	color: #FFFFFF;
    }

  5. Trouver (vers ligne 267) :
    Code: Tout sélectionner
    .postlink {
    	color: #368AD2;
    	border-bottom-color: #368AD2;
    }

    Remplacer par :
    Code: Tout sélectionner
    .postlink {
    	border-bottom-color: #368AD2;
    	color: #368AD2;
    }

  6. Trouver (vers ligne 272) :
    Code: Tout sélectionner
    .postlink:visited {
    	color: #5D8FBD;
    	border-bottom-color: #5D8FBD;
    }

    Remplacer par :
    Code: Tout sélectionner
    .postlink:visited {
    	border-bottom-color: #5D8FBD;
    	color: #5D8FBD;
    }

  7. Supprimer (vers ligne 661) :
    Code: Tout sélectionner
    .icon-search-advanced		{ background-image: url("./images/icon_search_adv.gif"); }

theme/common.css

  1. Trouver (vers ligne 55) :
    Code: Tout sélectionner
    body {
    	/* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
    	font-family: Verdana, Helvetica, Arial, sans-serif;
    	/*font-size: 62.5%;			 This sets the default font size to be equivalent to 10px */
    	font-size: 10px;

    Remplacer par :
    Code: Tout sélectionner
    body {
    	font-family: Verdana, Helvetica, Arial, sans-serif;
    	font-size: 10px;

  2. Trouver (vers ligne 113) :
    Code: Tout sélectionner
    hr {
    	/* Also see tweaks.css */
    	border: 0 solid transparent;

    Remplacer par :
    Code: Tout sélectionner
    hr {
    	border: 0 solid transparent;

  3. Trouver (vers ligne 670) :
    Code: Tout sélectionner
    table.table1 .name		{ text-align: left; }

    Ajouter après :
    Code: Tout sélectionner
    table.table1 .center		{ text-align: center; }
    table.table1 .reportby	{ width: 15%; }

  4. Trouver (vers ligne 713) :
    Code: Tout sélectionner
    /* column[1-2] styles are containers for two column layouts
       Also see tweaks.css */

    Remplacer par :
    Code: Tout sélectionner
    /* column[1-2] styles are containers for two column layouts */

theme/content.css

  1. Supprimer (vers ligne 262) :
    Code: Tout sélectionner
    	/* Also see tweaks.css */

  2. Supprimer (vers ligne 512) :
    Code: Tout sélectionner
    	/* Also see tweaks.css */

  3. Supprimer (vers ligne 694) :
    Code: Tout sélectionner
    	/* Also see tweaks.css */

style.cfg

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

    Remplacez par :
    Code: Tout sélectionner
    style_version = 3.1.4
    phpbb_version = 3.1.4

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/memberlist_body.html
  • template/overall_header.html
  • template/posting_body.html
  • template/posting_poll_body.html
  • template/search_results.html
  • template/ucp_avatar_options_local.html
  • template/ucp_profile_autologin_keys.html
  • template/ucp_profile_profile_info.html
  • template/ucp_profile_reg_details.html
  • template/viewtopic_body.html
  • theme/images/
  • style.cfg

template/forumlist_body.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.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 -->

    Dans la ligne, trouver :
    Code: Tout sélectionner
    <!-- IF forumrow.subforum.UNREAD -->

    Remplacer par :
    Code: Tout sélectionner
    <!-- IF forumrow.subforum.S_UNREAD -->

template/memberlist_body.html

  1. Trouver (vers ligne 42) :
    Code: Tout sélectionner
    	<th nowrap="nowrap" width="25%" align="{S_CONTENT_FLOW_BEGIN}"><a href="{U_SORT_USERNAME}">{L_USERNAME}</a></th>

    Remplacer par :
    Code: Tout sélectionner
    	<th nowrap="nowrap" width="36%" align="{S_CONTENT_FLOW_BEGIN}"><a href="{U_SORT_USERNAME}">{L_USERNAME}</a></th>

  2. Supprimer (vers ligne 46) :
    Code: Tout sélectionner
    	<th nowrap="nowrap" width="11%">{L_SEND_MESSAGE}</th>

  3. Trouver (vers ligne 54) :
    Code: Tout sélectionner
    				<td colspan="8"><b class="gensmall">{L_GROUP_LEADER}</b></td>

    Remplacer par :
    Code: Tout sélectionner
    				<td colspan="7"><b class="gensmall">{L_GROUP_LEADER}</b></td>

  4. Trouver (vers ligne 58) :
    Code: Tout sélectionner
    				<td colspan="8"><b class="gensmall">{L_GROUP_MEMBERS}</b></td>

    Remplacer par :
    Code: Tout sélectionner
    				<td colspan="7"><b class="gensmall">{L_GROUP_MEMBERS}</b></td>

  5. Supprimer (vers ligne 71) :
    Code: Tout sélectionner
    		<td class="gen" align="center">&nbsp;<!-- IF memberrow.U_PM --><a href="{memberrow.U_PM}" class="imageset">{PM_IMG}</a><!-- ENDIF -->&nbsp;</td>

  6. Trouver (vers ligne 82) :
    Code: Tout sélectionner
    		<td class="row1" colspan="<!-- IF S_IN_SEARCH_POPUP -->9<!-- ELSE -->8<!-- ENDIF -->" align="center">

    Remplacer par :
    Code: Tout sélectionner
    		<td class="row1" colspan="<!-- IF S_IN_SEARCH_POPUP -->8<!-- ELSE -->7<!-- ENDIF -->" align="center">

  7. Trouver (vers ligne ) :
    Code: Tout sélectionner
    	<td class="cat" colspan="<!-- IF S_IN_SEARCH_POPUP -->9<!-- ELSE -->8<!-- ENDIF -->" align="center"><!-- IF S_IN_SEARCH_POPUP and not S_SELECT_SINGLE --><input class="btnlite" type="submit" value="{L_SELECT_MARKED}" /><!-- ELSE --><span class="gensmall">{L_SELECT_SORT_METHOD}{L_COLON}</span>&nbsp;<select name="sk">{S_MODE_SELECT}</select>&nbsp; <span class="gensmall">{L_ORDER}</span>&nbsp;<select name="sd">{S_ORDER_SELECT}</select>&nbsp; <input type="submit" name="submit" value="{L_SUBMIT}" class="btnlite" /><!-- ENDIF --></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td class="cat" colspan="<!-- IF S_IN_SEARCH_POPUP -->8<!-- ELSE -->7<!-- ENDIF -->" align="center"><!-- IF S_IN_SEARCH_POPUP and not S_SELECT_SINGLE --><input class="btnlite" type="submit" value="{L_SELECT_MARKED}" /><!-- ELSE --><span class="gensmall">{L_SELECT_SORT_METHOD}{L_COLON}</span>&nbsp;<select name="sk">{S_MODE_SELECT}</select>&nbsp; <span class="gensmall">{L_ORDER}</span>&nbsp;<select name="sd">{S_ORDER_SELECT}</select>&nbsp; <input type="submit" name="submit" value="{L_SUBMIT}" class="btnlite" /><!-- ENDIF --></td>

template/overall_header.html

  1. Trouver (vers ligne 156) :
    Code: Tout sélectionner
    	<div id="menubar">

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

template/posting_body.html

  1. Trouver (vers ligne 174) :
    Code: Tout sélectionner
    	<!-- IF S_SMILIES_ALLOWED -->

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

  2. Trouver (vers ligne 188) :
    Code: Tout sélectionner
    		<!-- 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>
    	<!-- ENDIF -->

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

  3. Trouver (vers ligne 243) :
    Code: Tout sélectionner
    			<td class="gensmall">{URL_STATUS}</td>
    		</tr>
    		<!-- ENDIF -->
    		<tr>
    			<td class="gensmall">{SMILIES_STATUS}</td>
    		</tr>
    		</table>
    	</td>

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

template/posting_poll_body.html

  1. Trouver (vers ligne 24) :
    Code: Tout sélectionner
    <!-- IF S_POLL_VOTE_CHANGE -->
    	<tr>
    		<td class="row1"><b class="genmed">{L_POLL_VOTE_CHANGE}{L_COLON}</b><br /><span class="gensmall">{L_POLL_VOTE_CHANGE_EXPLAIN}</span></td>
    		<td class="row2"><input type="checkbox" class="radio" name="poll_vote_change"{VOTE_CHANGE_CHECKED} /></td>
    	</tr>
    <!-- ENDIF -->

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

template/search_results.html

  1. Trouver (vers ligne 3) :
    Code: Tout sélectionner
    <form method="post" action="{S_SEARCH_ACTION}">

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

  2. Trouver (vers ligne 13) :
    Code: Tout sélectionner
    	<td align="{S_CONTENT_FLOW_END}"><!-- IF SEARCH_IN_RESULTS --><span class="genmed">{L_SEARCH_IN_RESULTS}{L_COLON} </span><input class="post" type="text" name="add_keywords" value="" /> <input class="btnlite" type="submit" name="submit" value="{L_GO}" /><!-- ENDIF --></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td align="{S_CONTENT_FLOW_END}"><!-- EVENT search_results_searchbox_after --><!-- IF SEARCH_IN_RESULTS --><span class="genmed">{L_SEARCH_IN_RESULTS}{L_COLON} </span><input class="post" type="text" name="add_keywords" value="" /> <input class="btnlite" type="submit" name="submit" value="{L_GO}" /><!-- ENDIF --></td>

  3. Trouver (vers ligne 17) :
    Code: Tout sélectionner
    <br clear="all" />
    
    <!-- IF S_SHOW_TOPICS -->

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

template/ucp_avatar_options_local.html

  1. Trouver (vers ligne 17) :
    Code: Tout sélectionner
    					<td class="row1" align="center"><img src="{avatar_local_col.avatar_local_col.AVATAR_IMAGE}" alt="{avatar_local_col.avatar_local_col.AVATAR_NAME}" title="{avatar_local_col.avatar_local_col.AVATAR_NAME}" /></td>

    Remplacer par :
    Code: Tout sélectionner
    					<td class="row1" align="center" id="av-{avatar_local_row.S_ROW_COUNT}-{avatar_local_row.avatar_local_col.S_ROW_COUNT}"><img src="{avatar_local_row.avatar_local_col.AVATAR_IMAGE}" alt="{avatar_local_row.avatar_local_col.AVATAR_NAME}" title="{avatar_local_row.avatar_local_col.AVATAR_NAME}" /></td>

  2. Trouver (vers ligne 22) :
    Code: Tout sélectionner
    					<td class="row2" align="center"><input type="radio" class="radio" name="avatar_local_file" value="{avatar_local_col.avatar_local_option.S_OPTIONS_AVATAR}" /></td>

    Remplacer par :
    Code: Tout sélectionner
    					<td class="row2" align="center"><input type="radio" class="radio" name="avatar_local_file" id="av-{avatar_local_row.S_ROW_COUNT}-{avatar_local_row.avatar_local_col.S_ROW_COUNT}" value="{avatar_local_row.avatar_local_option.S_OPTIONS_AVATAR}" /></td>
    

  3. Trouver (vers ligne 29) :
    Code: Tout sélectionner
    			<!-- END avatar_local_col -->

    Remplacer par :
    Code: Tout sélectionner
    			<!-- END avatar_local_row -->

template/ucp_profile_autologin_keys.html

  1. Trouver (vers ligne 19) :
    Code: Tout sélectionner
    	<th>{L_IP}</th>
    	<th>{L_LOGIN_TIME}</th>
    	<th>{L_MARK}</th>

    Remplacer par :
    Code: Tout sélectionner
    	<th class="center">{L_IP}</th>
    	<th class="center">{L_LOGIN_TIME}</th>
    	<th class="center">{L_MARK}</th>

template/ucp_profile_profile_info.html

  1. Trouver (vers ligne 15) :
    Code: Tout sélectionner
    <!-- IF S_JABBER_ENABLED -->

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

  2. Trouver (vers ligne 37) :
    Code: Tout sélectionner
    <!-- END profile_fields -->

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

template/ucp_profile_reg_details.html

  1. Trouver (vers ligne 17) :
    Code: Tout sélectionner
    <tr>
    	<td class="row1" width="35%"><b class="genmed">{L_USERNAME}{L_COLON} </b><br /><span class="gensmall">{L_USERNAME_EXPLAIN}</span></td>

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

  2. Trouver (vers ligne 36) :
    Code: Tout sélectionner
    <tr>
    	<th colspan="2">{L_CONFIRM_CHANGES}</th>

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

template/viewtopic_body.html

  1. Trouver (vers ligne 47) :
    Code: Tout sélectionner
    			<td class="gensmall" width="100%" align="{S_CONTENT_FLOW_END}" nowrap="nowrap"><!-- INCLUDE pagination.html --></td>

    Remplacer par :
    Code: Tout sélectionner
    			<td class="gensmall" width="100%" align="{S_CONTENT_FLOW_END}" nowrap="nowrap"><!-- INCLUDE pagination.html --><!-- EVENT viewtopic_body_pagination_top_after --></td>

  2. Trouver (vers ligne 170) :
    Code: Tout sélectionner
    			<td width="100%" height="25">
    				<table width="100%" cellspacing="0">
    				<tr>
    				<!-- IF postrow.POST_ICON_IMG -->

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

  3. Trouver (vers ligne 177) :
    Code: Tout sélectionner
    					<td class="gensmall" width="100%"><div style="float: {S_CONTENT_FLOW_BEGIN};">&nbsp;<b>{L_POST_SUBJECT}{L_COLON}</b> <a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a></div><div style="float: {S_CONTENT_FLOW_END};"><!-- IF S_IS_BOT -->{postrow.MINI_POST_IMG}<!-- ELSE --><a href="{postrow.U_MINI_POST}" class="imageset">{postrow.MINI_POST_IMG}</a><!-- ENDIF --><b>{L_POSTED}{L_COLON}</b> {postrow.POST_DATE}&nbsp;</div></td>
    				</tr>
    				</table>
    			</td>

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

theme/stylesheet.css

  1. Trouver (vers ligne 315) :
    Code: Tout sélectionner
    th {
    	color: #FFA34F;
    	font-size: 1.1em;
    	font-weight: bold;
    	background-color: #006699;
    	background-image: url('./images/cellpic3.gif');
    	white-space: nowrap;
    	padding: 7px 5px;
    }

    Ajouter après :
    Code: Tout sélectionner
    th.center {
    	text-align: center;
    }

style.cfg

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

    Remplacez par :
    Code: Tout sélectionner
    style_version = 3.1.4
    phpbb_version = 3.1.4

Retour à la documentation : mettre à jour son forum phpBB 3.1.x
Avatar de l’utilisateur
cabot
Equipe site
Equipe site
 
Rédigé le: 04 Mai 2015 à 19:14
Articles: 20
Noter cet article: 123456 Votants: 1
Mots-clés: 31x

Retourner vers Mise à jour


cron