Changeset 7375
- Timestamp:
- 07/05/2018 09:52:30 PM (7 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main
- Files:
-
- 6 edited
-
inc/template-tags.php (modified) (1 diff)
-
page-about-history.php (modified) (3 diffs)
-
page-about-testimonials.php (modified) (1 diff)
-
page-download-beta-nightly.php (modified) (2 diffs)
-
page-download-source.php (modified) (1 diff)
-
page-releases.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/inc/template-tags.php
r7357 r7375 22 22 <td><?php echo esc_html( date_i18n( get_option( 'date_format' ), $release['builton'] ) ); ?></td> 23 23 <td><a href="<?php echo esc_url( $release['zip_url'] ); ?>">zip</a> 24 <small>(<a href="<?php echo esc_url( $release['zip_url'] . '.md5' ); ?>">md5</a><?php if ( ! $is_rosetta ) : ?> | <a href="<?php echo esc_url( $release['zip_url'] . '.sha1' ); ?>">sha1</a><?php endif; ?>)</small> 24 <small>(<a href="<?php echo esc_url( $release['zip_url'] . '.md5' ); ?>">md5</a> 25 <?php if ( ! $is_rosetta ) : ?> 26 | <a href="<?php echo esc_url( $release['zip_url'] . '.sha1' ); ?>">sha1</a> 27 <?php endif; ?>) 28 </small> 25 29 </td> 26 30 <td><a href="<?php echo esc_url( $release['targz_url'] ); ?>">tar.gz</a> 27 <small>(<a href="<?php echo esc_url( $release['targz_url'] . '.md5' ); ?>">md5</a><?php if ( ! $is_rosetta ) : ?> | <a href="<?php echo esc_url( $release['targz_url'] . '.sha1' ); ?>">sha1</a><?php endif; ?>)</small> 31 <small>(<a href="<?php echo esc_url( $release['targz_url'] . '.md5' ); ?>">md5</a> 32 <?php if ( ! $is_rosetta ) : ?> 33 | <a href="<?php echo esc_url( $release['targz_url'] . '.sha1' ); ?>">sha1</a> 34 <?php endif; ?>) 35 </small> 28 36 </td> 29 37 <?php if ( ! $is_rosetta ) : ?> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-history.php
r7363 r7375 45 45 <?php 46 46 /* translators: file format */ 47 printf( __( 'Chapter 3 – %s', 'wporg' ), 'EPUB' );47 printf( esc_html__( 'Chapter 3 – %s', 'wporg' ), 'EPUB' ); 48 48 ?> 49 49 </a> … … 53 53 <?php 54 54 /* translators: file format */ 55 printf( __( 'Chapter 3 – %s', 'wporg' ), 'MOBI' );55 printf( esc_html__( 'Chapter 3 – %s', 'wporg' ), 'MOBI' ); 56 56 ?> 57 57 </a> … … 61 61 <?php 62 62 /* translators: file format */ 63 printf( __( 'Chapter 3 – %s', 'wporg' ), 'PDF' );63 printf( esc_html__( 'Chapter 3 – %s', 'wporg' ), 'PDF' ); 64 64 ?> 65 65 </a> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-about-testimonials.php
r7350 r7375 132 132 <?php 133 133 /* translators: The #ilovewp Hashtag */ 134 printf( __( 'Tweet %s', 'wporg' ), '#ilovewp' );134 printf( esc_html__( 'Tweet %s', 'wporg' ), '#ilovewp' ); 135 135 ?> 136 136 </a> -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download-beta-nightly.php
r7367 r7375 66 66 <?php 67 67 printf( 68 /* translators: URL to documentation */68 /* translators: URL to documentation */ 69 69 wp_kses_post( __( 'If you would like to be part of this process, the best place to start is the <a href="%s">Beta Testing Handbook</a>.', 'wporg' ) ), 70 70 esc_url( 'https://make.wordpress.org/core/handbook/testing/beta/' ) … … 78 78 </main><!-- #main --> 79 79 80 <?php80 <?php 81 81 get_footer(); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-download-source.php
r7368 r7375 129 129 </main><!-- #main --> 130 130 131 <?php131 <?php 132 132 get_footer(); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-main/page-releases.php
r7367 r7375 11 11 12 12 if ( get_post()->post_parent ) { 13 $GLOBALS['menu_items'] = [14 'download/releases' => _x( 'Releases', 'Page title', 'wporg' ),15 'download/beta-nightly' => _x( 'Beta/Nightly', 'Page title', 'wporg' ),16 'download/counter' => _x( 'Counter', 'Page title', 'wporg' ),17 'download/source' => _x( 'Source Code', 'Page title', 'wporg' ),18 ];13 $GLOBALS['menu_items'] = [ 14 'download/releases' => _x( 'Releases', 'Page title', 'wporg' ), 15 'download/beta-nightly' => _x( 'Beta/Nightly', 'Page title', 'wporg' ), 16 'download/counter' => _x( 'Counter', 'Page title', 'wporg' ), 17 'download/source' => _x( 'Source Code', 'Page title', 'wporg' ), 18 ]; 19 19 } 20 20
Note: See TracChangeset
for help on using the changeset viewer.