diff --git a/wp-admin/admin-functions.php b/wp-admin/admin-functions.php index 7bf35055cd..e6d1afabee 100644 --- a/wp-admin/admin-functions.php +++ b/wp-admin/admin-functions.php @@ -561,7 +561,7 @@ function add_link() { function edit_link( $link_id = '' ) { if (!current_user_can( 'manage_links' )) - wp_die( __( 'Cheatin&8217; uh?' )); + wp_die( __( 'Cheatin’ uh?' )); $_POST['link_url'] = wp_specialchars( $_POST['link_url'] ); $_POST['link_url'] = preg_match('/^(https?|ftps?|mailto|news|irc|gopher|nntp|feed|telnet):/is', $_POST['link_url']) ? $_POST['link_url'] : 'http://' . $_POST['link_url']; diff --git a/wp-admin/categories.php b/wp-admin/categories.php index a1017270e1..f7a04f9aa9 100644 --- a/wp-admin/categories.php +++ b/wp-admin/categories.php @@ -34,10 +34,10 @@ case 'delete': // Don't delete the default cats. if ( $cat_ID == get_option('default_category') ) - wp_die(sprintf(__("Can&8217;t delete the %s category: this is the default one"), $cat_name)); + wp_die(sprintf(__("Can’t delete the %s category: this is the default one"), $cat_name)); if ( $cat_ID == get_option('default_link_category') ) - wp_die(sprintf(__("Can&8217;t delete the %s category: this is the default one for links"), $cat_name)); + wp_die(sprintf(__("Can’t delete the %s category: this is the default one for links"), $cat_name)); wp_delete_category($cat_ID); diff --git a/wp-admin/export.php b/wp-admin/export.php index 80439ffb82..7dc26fc21e 100644 --- a/wp-admin/export.php +++ b/wp-admin/export.php @@ -14,7 +14,7 @@ require_once ('admin-header.php');