Make WordPress Core

Changeset 21153


Ignore:
Timestamp:
06/27/2012 07:29:16 PM (13 years ago)
Author:
nacin
Message:

Add a check that previously fell through to the next branch in map_meta_cap(). for 3.4.

Location:
branches/3.4
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/3.4/wp-admin/about.php

    r20977 r21153  
    3333    </a>
    3434</h2>
     35
     36<div class="changelog point-releases">
     37    <h3><?php echo _n( 'Maintenance and Security Release', 'Maintenance and Security Releases', 1 ); ?></h3>
     38    <p><?php printf( _n( '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bug.',
     39         '<strong>Version %1$s</strong> addressed some security issues and fixed %2$s bugs.', 21 ), '3.4.1', number_format_i18n( 21 ) ); ?>
     40        <?php printf( __( 'For more information, see <a href="%s">the release notes</a>.' ), 'http://codex.wordpress.org/Version_3.4.1' ); ?>
     41    </p>
     42</div>
    3543
    3644<div class="changelog">
  • branches/3.4/wp-includes/capabilities.php

    r21060 r21153  
    11311131        if ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML )
    11321132            $caps[] = 'do_not_allow';
     1133        elseif ( is_multisite() && ! is_super_admin( $user_id ) )
     1134            $caps[] = $cap;
    11331135        else
    11341136            $caps[] = $cap;
  • branches/3.4/wp-includes/version.php

    r21151 r21153  
    55 * @global string $wp_version
    66 */
    7 $wp_version = '3.4.1-RC1';
     7$wp_version = '3.4.1';
    88
    99/**
Note: See TracChangeset for help on using the changeset viewer.