Changeset 21153
- Timestamp:
- 06/27/2012 07:29:16 PM (13 years ago)
- Location:
- branches/3.4
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.4/wp-admin/about.php
r20977 r21153 33 33 </a> 34 34 </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> 35 43 36 44 <div class="changelog"> -
branches/3.4/wp-includes/capabilities.php
r21060 r21153 1131 1131 if ( defined( 'DISALLOW_UNFILTERED_HTML' ) && DISALLOW_UNFILTERED_HTML ) 1132 1132 $caps[] = 'do_not_allow'; 1133 elseif ( is_multisite() && ! is_super_admin( $user_id ) ) 1134 $caps[] = $cap; 1133 1135 else 1134 1136 $caps[] = $cap; -
branches/3.4/wp-includes/version.php
r21151 r21153 5 5 * @global string $wp_version 6 6 */ 7 $wp_version = '3.4.1 -RC1';7 $wp_version = '3.4.1'; 8 8 9 9 /**
Note: See TracChangeset
for help on using the changeset viewer.