Make WordPress Core

Ticket #26961: 26961.patch

File 26961.patch, 723 bytes (added by Frank Klein, 10 years ago)
  • src/wp-content/themes/twentyfourteen/inc/widgets.php

     
    107107                                <article <?php post_class(); ?>>
    108108                                        <div class="entry-content">
    109109                                                <?php
     110                                                        $tmp_more = $GLOBALS['more'];
     111                                                        $GLOBALS['more'] = 0;
     112
    110113                                                        if ( has_post_format( 'gallery' ) ) :
    111114
    112115                                                                if ( post_password_required() ) :
     
    195198                        wp_reset_postdata();
    196199
    197200                        $GLOBALS['content_width'] = $tmp_content_width;
     201                        $GLOBALS['more'] = $tmp_more;
    198202
    199203                endif; // End check for ephemeral posts.
    200204        }