Undo nested paragraphs added in [21816]. see #17944.

git-svn-id: https://develop.svn.wordpress.org/trunk@21817 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2012-09-11 19:16:53 +00:00
parent 533217f3ba
commit a5e8f80f58
1 changed files with 6 additions and 8 deletions

View File

@ -146,14 +146,12 @@ $customize_title = sprintf( __( 'Customize “%s”' ), $ct->display('Na
<li><?php printf( __('By %s'), $ct->display('Author') ); ?></li> <li><?php printf( __('By %s'), $ct->display('Author') ); ?></li>
<li><?php printf( __('Version %s'), $ct->display('Version') ); ?></li> <li><?php printf( __('Version %s'), $ct->display('Version') ); ?></li>
</ul> </ul>
<p class="theme-description"><?php <p class="theme-description"><?php echo $ct->display('Description'); ?></p>
echo $ct->display('Description'); <?php if ( $ct->parent() ) {
if ( $ct->parent() ) {
printf( ' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>', printf( ' <p class="howto">' . __( 'This <a href="%1$s">child theme</a> requires its parent theme, %2$s.' ) . '</p>',
__( 'http://codex.wordpress.org/Child_Themes' ), __( 'http://codex.wordpress.org/Child_Themes' ),
$ct->parent()->display( 'Name' ) ); $ct->parent()->display( 'Name' ) );
} } ?>
?></p>
<?php theme_update_available( $ct ); ?> <?php theme_update_available( $ct ); ?>
</div> </div>