Ticket #4379: #4379.patch
File #4379.patch, 3.0 KB (added by , 5 years ago) |
---|
-
wordpress.org/public_html/wp-content/themes/pub/wporg-main/inc/template-tags.php
10 10 namespace WordPressdotorg\MainTheme; 11 11 12 12 /** 13 * Displays a table col with release information. 14 */ 15 function release_col() { 16 ?> 17 <col width="15%" /> 18 <col width="25%" /> 19 <col width="15%" /> 20 <col width="15%" /> 21 <?php if ( ! defined( 'IS_ROSETTA_NETWORK' ) || ! IS_ROSETTA_NETWORK ) : ?> 22 <col width="15%" /> 23 <?php endif; ?> 24 <?php 25 } 26 27 /** 13 28 * Displays a table row with release information. 14 29 * 15 30 * @param array $release Release to be processed. -
wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download-releases.php
67 67 ?> 68 68 <h3 id="latest"><?php esc_html_e( 'Latest release', 'wporg' ); ?></h3> 69 69 <table class="releases latest"> 70 <col width="15%" /> 71 <col width="25%" /> 72 <col width="15%" /> 73 <col width="15%" /> 74 <col width="15%" /> 70 <?php release_col(); ?> 75 71 <?php release_row( $releases['latest'] ); ?> 76 72 </table> 77 73 <?php … … 92 88 ?> 93 89 </h3> 94 90 <table class="releases"> 95 <col width="15%" /> 96 <col width="25%" /> 97 <col width="15%" /> 98 <col width="15%" /> 99 <col width="15%" /> 91 <?php release_col(); ?> 100 92 <?php 101 93 foreach ( $branch_release as $release ) : 102 94 release_row( $release ); … … 112 104 <h3 id="betas"><?php esc_html_e( 'Beta & RC releases', 'wporg' ); ?></h3> 113 105 <p><?php esc_html_e( 'These were testing releases and are only available here for archival purposes.', 'wporg' ); ?></p> 114 106 <table id="beta" class="releases"> 115 <col width="15%" /> 116 <col width="25%" /> 117 <col width="15%" /> 118 <col width="15%" /> 119 <col width="15%" /> 107 <?php release_col(); ?> 120 108 <?php 121 109 foreach ( $releases['betas'] as $release ) : 122 110 release_row( $release ); … … 132 120 <h3 id="mu"><?php esc_html_e( 'MU releases', 'wporg' ); ?></h3> 133 121 <p><?php esc_html_e( 'WordPress MU releases made prior to MU being merged into WordPress 3.0', 'wporg' ); ?></p> 134 122 <table class="releases"> 135 <col width="15%" /> 136 <col width="30%" /> 137 <col width="15%" /> 138 <col width="15%" /> 139 <col width="15%" /> 123 <?php release_col(); ?> 140 124 <?php 141 125 foreach ( $releases['mu'] as $release ) : 142 126 release_row( $release );