Ticket #13198: 13198-no-need-escape-invalid-param.patch
| File 13198-no-need-escape-invalid-param.patch, 1020 bytes (added by , 16 years ago) |
|---|
-
wp-content/themes/twentyten/attachment.php
15 15 16 16 <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> 17 17 18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php printf( esc_attr__( 'Return to %s', 'twentyten' ), esc_html( get_the_title( $post->post_parent ), 1) ); ?>" rel="gallery">← <?php echo get_the_title( $post->post_parent ); ?></a></p>18 <p class="page-title"><a href="<?php echo get_permalink( $post->post_parent ); ?>" title="<?php printf( esc_attr__( 'Return to %s', 'twentyten' ), get_the_title( $post->post_parent ) ); ?>" rel="gallery">← <?php echo get_the_title( $post->post_parent ); ?></a></p> 19 19 20 20 <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> 21 21 <h2 class="entry-title"><?php the_title(); ?></h2>