Mise à jour des styles de phpBB 3.1.8 à 3.1.9 Facile

Mise à jour des styles de phpBB 3.1.8 à 3.1.9

Détail des modifications des styles de phpBB 3.1.8 à 3.1.9


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/mcp_topic.html
  • template/memberlist_view.html
  • template/overall_header.html
  • template/pagination.html
  • template/posting_editor.html
  • template/posting_poll_body.html
  • template/simple_header.html
  • template/ucp_avatar_options_gravatar.html
  • template/ucp_avatar_options_remote.html
  • template/ucp_pm_viewmessage_print.html
  • template/viewtopic_print.html
  • style.cfg

template/mcp_topic.html

  1. Trouver (vers ligne 37) :
    Code: Tout sélectionner
    		<dd><input class="inputbox autowidth" type="number" min="0" name="posts_per_page" id="posts_per_page" size="6" value="{POSTS_PER_PAGE}" /></dd>

    Remplacer par :
    Code: Tout sélectionner
    		<dd><input class="inputbox autowidth" type="number" min="0" max="999999" name="posts_per_page" id="posts_per_page" value="{POSTS_PER_PAGE}" /></dd>

  2. Trouver (vers ligne 76) :
    Code: Tout sélectionner
    			<input class="inputbox autowidth" type="number" min="0" size="6" name="to_topic_id" id="to_topic_id" value="{TO_TOPIC_ID}" />

    Remplacer par :
    Code: Tout sélectionner
    			<input class="inputbox autowidth" type="number" min="0" max="999999" name="to_topic_id" id="to_topic_id" value="{TO_TOPIC_ID}" />

template/memberlist_view.html

  1. Trouver (vers ligne 39) :
    Code: Tout sélectionner
    		<!-- BEGIN custom_fields -->

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

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

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

  3. Trouver (vers ligne 46) :
    Code: Tout sélectionner
    		<!-- IF S_USER_LOGGED_IN and S_ZEBRA -->

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

  4. Trouver (vers ligne 56) :
    Code: Tout sélectionner
    				<!-- IF U_ADD_FOE -->
    					<dt>&nbsp;</dt> <dd class="zebra"><a href="{U_ADD_FOE}" data-ajax="zebra"><strong>{L_ADD_FOE}</strong></a></dd>
    				<!-- ENDIF -->
    			<!-- ENDIF -->
    		<!-- ENDIF -->

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

  5. Trouver (vers ligne 78) :
    Code: Tout sélectionner
    		<!-- BEGIN custom_fields -->

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

  6. Trouver (vers ligne 88) :
    Code: Tout sélectionner
    		<!-- END custom_fields -->

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

template/overall_header.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/pagination.html

  1. Trouver (vers ligne 10) :
    Code: Tout sélectionner
    					<input type="number" name="page-number" min="1" maxlength="6" title="{L_JUMP_PAGE}" class="inputbox tiny" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" />

    Remplacer par :
    Code: Tout sélectionner
    					<input type="number" name="page-number" min="1" max="999999" title="{L_JUMP_PAGE}" class="inputbox tiny" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" />

template/posting_editor.html

  1. Trouver (vers ligne 167) :
    Code: Tout sélectionner
    				<dd><label for="topic_time_limit"><input type="number" min="0" max="999" name="topic_time_limit" id="topic_time_limit" size="3" maxlength="3" value="{TOPIC_TIME_LIMIT}" class="inputbox autowidth" /> {L_DAYS}</label></dd>

    Remplacer par :
    Code: Tout sélectionner
    				<dd><label for="topic_time_limit"><input type="number" min="0" max="999" name="topic_time_limit" id="topic_time_limit" value="{TOPIC_TIME_LIMIT}" class="inputbox autowidth" /> {L_DAYS}</label></dd>

template/posting_poll_body.html

  1. Trouver (vers ligne 30) :
    Code: Tout sélectionner
    			<dd><input type="number" min="0" max="999" name="poll_max_options" id="poll_max_options" size="3" maxlength="3" value="{POLL_MAX_OPTIONS}" class="inputbox autowidth" /></dd>

    Remplacer par :
    Code: Tout sélectionner
    			<dd><input type="number" min="0" max="999" name="poll_max_options" id="poll_max_options" value="{POLL_MAX_OPTIONS}" class="inputbox autowidth" /></dd>

  2. Trouver (vers ligne 35) :
    Code: Tout sélectionner
    			<dd><label for="poll_length"><input type="number" min="0" max="999" name="poll_length" id="poll_length" size="3" maxlength="3" value="{POLL_LENGTH}" class="inputbox autowidth" /> {L_DAYS}</label></dd>

    Remplacer par :
    Code: Tout sélectionner
    			<dd><label for="poll_length"><input type="number" min="0" max="999" name="poll_length" id="poll_length" value="{POLL_LENGTH}" class="inputbox autowidth" /> {L_DAYS}</label></dd>

template/simple_header.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/ucp_avatar_options_gravatar.html

  1. Trouver (vers ligne 8 ) :
    Code: Tout sélectionner
    		<label for="avatar_gravatar_width"><input type="text" name="avatar_gravatar_width" id="avatar_gravatar_width" size="3" value="{AVATAR_GRAVATAR_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> &times;&nbsp; 

    Remplacer par :
    Code: Tout sélectionner
    		<label for="avatar_gravatar_width"><input type="number" name="avatar_gravatar_width" id="avatar_gravatar_width" min="{AVATAR_MIN_WIDTH}" max="{AVATAR_MAX_WIDTH}" value="{AVATAR_GRAVATAR_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> &times;&nbsp;

  2. Trouver (vers ligne 9) :
    Code: Tout sélectionner
    		<label for="avatar_gravatar_height"><input type="text" name="avatar_gravatar_height" id="avatar_gravatar_height" size="3" value="{AVATAR_GRAVATAR_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label>

    Remplacer par :
    Code: Tout sélectionner
    		<label for="avatar_gravatar_height"><input type="number" name="avatar_gravatar_height" id="avatar_gravatar_height" min="{AVATAR_MIN_HEIGHT}" max="{AVATAR_MAX_HEIGHT}" value="{AVATAR_GRAVATAR_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label>

template/ucp_avatar_options_remote.html

  1. Trouver (vers ligne 8 ) :
    Code: Tout sélectionner
    		<label for="avatar_remote_width"><input type="text" name="avatar_remote_width" id="avatar_remote_width" size="3" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> &times;&nbsp; 

    Remplacer par :
    Code: Tout sélectionner
    		<label for="avatar_remote_width"><input type="number" name="avatar_remote_width" id="avatar_remote_width" min="{AVATAR_MIN_WIDTH}" max="{AVATAR_MAX_WIDTH}" value="{AVATAR_REMOTE_WIDTH}" class="inputbox autowidth" /> {L_PIXEL}</label> &times;&nbsp;

  2. Trouver (vers ligne 9) :
    Code: Tout sélectionner
    		<label for="avatar_remote_height"><input type="text" name="avatar_remote_height" id="avatar_remote_height" size="3" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label>

    Remplacer par :
    Code: Tout sélectionner
    		<label for="avatar_remote_height"><input type="number" name="avatar_remote_height" id="avatar_remote_height" min="{AVATAR_MIN_HEIGHT}" max="{AVATAR_MAX_HEIGHT}" value="{AVATAR_REMOTE_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}</label>

template/ucp_pm_viewmessage_print.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/viewtopic_print.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

style.cfg

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

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


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


2 » Détail des modifications subsilver2

Liste des fichiers à modifier :
  • template/mcp_topic.html
  • template/memberlist_view.html
  • template/overall_header.html
  • template/posting_attach_body.html
  • template/posting_body.html
  • template/posting_poll_body.html
  • template/simple_header.html
  • template/ucp_avatar_options_gravatar.html
  • template/ucp_avatar_options_remote.html
  • template/ucp_pm_viewmessage_print.html
  • template/viewtopic_print.html
  • style.cfg

template/mcp_topic.html

  1. Trouver (vers ligne 47) :
    Code: Tout sélectionner
    		<td class="row2" colspan="2"><input class="post" type="number" min="0" size="6" name="to_topic_id" value="{TO_TOPIC_ID}" /> <a href="{U_SELECT_TOPIC}">{L_SELECT_TOPIC}</a></td>

    Remplacer par :
    Code: Tout sélectionner
    		<td class="row2" colspan="2"><input class="post" type="number" min="0" max="999999" name="to_topic_id" value="{TO_TOPIC_ID}" /> <a href="{U_SELECT_TOPIC}">{L_SELECT_TOPIC}</a></td>

  2. Trouver (vers ligne 60) :
    Code: Tout sélectionner
    	<td class="row2" colspan="2"><input class="post" type="number" min="0" name="posts_per_page" size="6" value="{POSTS_PER_PAGE}" /></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td class="row2" colspan="2"><input class="post" type="number" min="0" max="999999" name="posts_per_page" value="{POSTS_PER_PAGE}" /></td>

template/memberlist_view.html

  1. Trouver (vers ligne 56) :
    Code: Tout sélectionner
    			<!-- IF S_USER_LOGGED_IN and S_ZEBRA -->

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

  2. Trouver (vers ligne 65) :
    Code: Tout sélectionner
    							<!-- IF U_ADD_FRIEND --><a href="{U_ADD_FRIEND}">{L_ADD_FRIEND}</a><!-- ENDIF --><!-- IF U_ADD_FOE --><!-- IF U_ADD_FRIEND --> | <!-- ENDIF --><a href="{U_ADD_FOE}">{L_ADD_FOE}</a><!-- ENDIF -->
    						<!-- ENDIF -->
    					]</td>
    				</tr>
    			<!-- ENDIF -->

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

  3. Trouver (vers ligne 134) :
    Code: Tout sélectionner
    			<!-- BEGIN custom_fields -->

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

  4. Trouver (vers ligne 146) :
    Code: Tout sélectionner
    			<!-- END custom_fields -->

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

  5. Trouver (vers ligne 169) :
    Code: Tout sélectionner
    			<!-- BEGIN custom_fields -->

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

  6. Trouver (vers ligne 177) :
    Code: Tout sélectionner
    			<!-- END custom_fields -->

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

template/overall_header.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/posting_attach_body.html

  1. Trouver (vers ligne 34) :
    Code: Tout sélectionner
    	<td class="row2"><input type="file" name="fileupload" size="40" maxlength="{FILESIZE}" value="" class="btnfile" /></td> 

    Remplacer par :
    Code: Tout sélectionner
    	<td class="row2"><input type="file" name="fileupload" maxlength="{FILESIZE}" value="" class="btnfile" /></td>

template/posting_body.html

  1. Trouver (vers ligne 339) :
    Code: Tout sélectionner
    		<td class="row2"><input class="post" type="number" min="0" max="999" name="topic_time_limit" size="3" maxlength="3" value="{TOPIC_TIME_LIMIT}" />&nbsp;<b class="gen">{L_DAYS}</b> <span class="gensmall">{L_STICK_TOPIC_FOR_EXPLAIN}</span></td>

    Remplacer par :
    Code: Tout sélectionner
    		<td class="row2"><input class="post" type="number" min="0" max="999" name="topic_time_limit" value="{TOPIC_TIME_LIMIT}" />&nbsp;<b class="gen">{L_DAYS}</b> <span class="gensmall">{L_STICK_TOPIC_FOR_EXPLAIN}</span></td>

template/posting_poll_body.html

  1. Trouver (vers ligne 18) :
    Code: Tout sélectionner
    	<td class="row2"><input class="post" type="number" min="0" max="999" name="poll_max_options" size="3" maxlength="3" value="{POLL_MAX_OPTIONS}" /></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td class="row2"><input class="post" type="number" min="0" max="999" name="poll_max_options" value="{POLL_MAX_OPTIONS}" /></td>

  2. Trouver (vers ligne 22) :
    Code: Tout sélectionner
    	<td class="row2"><input class="post" type="number" min="0" max="999" name="poll_length" size="3" maxlength="3" value="{POLL_LENGTH}" />&nbsp;<b class="gen">{L_DAYS}</b> <span class="gensmall">{L_POLL_FOR_EXPLAIN}</span></td>

    Remplacer par :
    Code: Tout sélectionner
    	<td class="row2"><input class="post" type="number" min="0" max="999" name="poll_length" value="{POLL_LENGTH}" />&nbsp;<b class="gen">{L_DAYS}</b> <span class="gensmall">{L_POLL_FOR_EXPLAIN}</span></td>

template/simple_header.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/ucp_avatar_options_gravatar.html

  1. Trouver (vers ligne 9) :
    Code: Tout sélectionner
    			<input type="text" name="avatar_gravatar_width" id="avatar_gravatar_width" size="3" value="{AVATAR_GRAVATAR_WIDTH}" class="inputbox autowidth" /> {L_PIXEL} &times;&nbsp; 

    Remplacer par :
    Code: Tout sélectionner
    			<input type="number" name="avatar_gravatar_width" id="avatar_gravatar_width" min="{AVATAR_MIN_WIDTH}" max="{AVATAR_MAX_WIDTH}" value="{AVATAR_GRAVATAR_WIDTH}" class="inputbox autowidth" /> {L_PIXEL} &times;&nbsp;

  2. Trouver (vers ligne 10) :
    Code: Tout sélectionner
    			<input type="text" name="avatar_gravatar_height" id="avatar_gravatar_height" size="3" value="{AVATAR_GRAVATAR_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}

    Remplacer par :
    Code: Tout sélectionner
    			<input type="number" name="avatar_gravatar_height" id="avatar_gravatar_height" min="{AVATAR_MIN_HEIGHT}" max="{AVATAR_MAX_HEIGHT}" value="{AVATAR_GRAVATAR_HEIGHT}" class="inputbox autowidth" /> {L_PIXEL}

template/ucp_avatar_options_remote.html

  1. Trouver (vers ligne 8 ) :
    Code: Tout sélectionner
    		<td class="row2"><input class="post" type="text" name="avatar_remote_width" size="3" value="{AVATAR_REMOTE_WIDTH}" /> <span class="gen">{L_PIXEL} &times; </span> <input class="post" type="text" name="avatar_remote_height" size="3" value="{AVATAR_REMOTE_HEIGHT}" /> <span class="gen">{L_PIXEL}</span></td>

    Remplacer par :
    Code: Tout sélectionner
    		<td class="row2"><input class="post" type="number" name="avatar_remote_width" min="{AVATAR_MIN_WIDTH}" max="{AVATAR_MAX_WIDTH}" value="{AVATAR_REMOTE_WIDTH}" /> <span class="gen">{L_PIXEL} &times; </span> <input class="post" type="number" name="avatar_remote_height" min="{AVATAR_MIN_HEIGHT}" max="{AVATAR_MAX_HEIGHT}" value="{AVATAR_REMOTE_HEIGHT}" /> <span class="gen">{L_PIXEL}</span></td>

template/ucp_pm_viewmessage_print.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

template/viewtopic_print.html

  1. Trouver (vers ligne 4) :
    Code: Tout sélectionner
    <meta charset="utf-8" />

    Ajouter après :
    Code: Tout sélectionner
    <meta http-equiv="X-UA-Compatible" content="IE=edge">

style.cfg

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

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

Retour à la documentation : mettre à jour son forum phpBB 3.1.x
Avatar de l’utilisateur
cabot
Equipe site
Equipe site
 
Rédigé le: 19 Avr 2016 à 13:43
Articles: 20
Noter cet article: 123456 Votants: Aucun

Retourner vers Mise à jour


cron