diff --git a/wp-admin/includes/class-wp-filesystem-base.php b/wp-admin/includes/class-wp-filesystem-base.php index 87fae2a6c..d501a307e 100644 --- a/wp-admin/includes/class-wp-filesystem-base.php +++ b/wp-admin/includes/class-wp-filesystem-base.php @@ -13,7 +13,7 @@ */ class WP_Filesystem_Base { /** - * Whether to display debug data for the connection or not. + * Whether to display debug data for the connection. * * @since 2.5 * @access public diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index 9ed1b07de..a9d7d8a76 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -128,7 +128,7 @@ function save_mod_rewrite_rules() { $home_path = get_home_path(); $htaccess_file = $home_path.'.htaccess'; - // If the file doesn't already exists check for write access to the directory and whether of not we have some rules. + // If the file doesn't already exists check for write access to the directory and whether we have some rules. // else check for write access to the file. if ((!file_exists($htaccess_file) && is_writable($home_path) && $wp_rewrite->using_mod_rewrite_permalinks()) || is_writable($htaccess_file)) { if ( got_mod_rewrite() ) { @@ -359,7 +359,7 @@ jQuery('#codepress-off').show(); } /** - * Determine whether to use CodePress or not. + * Determine whether to use CodePress. * * @since 2.8 **/ diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 1092d8009..92f8ff1f3 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -180,7 +180,7 @@ function link_cat_row( $category, $name_override = false ) { * * @param any $checked One of the values to compare * @param any $current (true) The other value to compare if not just true - * @param bool $echo Whether or not to echo or just return the string + * @param bool $echo Whether to echo or just return the string */ function checked( $checked, $current = true, $echo = true) { return __checked_selected_helper( $checked, $current, $echo, 'checked' ); @@ -195,7 +195,7 @@ function checked( $checked, $current = true, $echo = true) { * * @param any selected One of the values to compare * @param any $current (true) The other value to compare if not just true - * @param bool $echo Whether or not to echo or just return the string + * @param bool $echo Whether to echo or just return the string */ function selected( $selected, $current = true, $echo = true) { return __checked_selected_helper( $selected, $current, $echo, 'selected' ); @@ -211,7 +211,7 @@ function selected( $selected, $current = true, $echo = true) { * * @param any $helper One of the values to compare * @param any $current (true) The other value to compare if not just true - * @param bool $echo Whether or not to echo or just return the string + * @param bool $echo Whether to echo or just return the string * @param string $type The type of checked|selected we are doing. */ function __checked_selected_helper( $helper, $current, $echo, $type) { diff --git a/wp-content/themes/default/header.php b/wp-content/themes/default/header.php index 43b729b49..5b98a60c9 100644 --- a/wp-content/themes/default/header.php +++ b/wp-content/themes/default/header.php @@ -18,7 +18,7 @@